This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
library
mirror of
https://github.com/VCVRack/library.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Add Makefile, README
pull/249/head
Andrew Belt
6 years ago
parent
7636ccad7c
commit
17dd1dbc21
3 changed files
with
13 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-7
.travis.yml
+6
-0
Makefile
+7
-0
README.md
+ 0
- 7
.travis.yml
View File
@@ -1,7 +0,0 @@
language: node_js
node_js:
"9.3.0"
before_install:
- git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
- git fetch
+ 6
- 0
Makefile
View File
@@ -0,0 +1,6 @@
# Convert relative Rack directory path to absolute
RACK_DIR := $(shell realpath $(RACK_DIR))
dist_all:
for f in repos/*; do $(MAKE) -C "$$f" dist; done
+ 7
- 0
README.md
View File
@@ -0,0 +1,7 @@
### Building repos
- Clone all repos with `git submodule update --init --recursive`
- Build all repos with `RACK_DIR=<path to Rack directory> make dist_all`
Write
Preview
Loading…
Cancel
Save