Browse Source

Add Makefile, README

pull/249/head
Andrew Belt 6 years ago
parent
commit
17dd1dbc21
3 changed files with 13 additions and 7 deletions
  1. +0
    -7
      .travis.yml
  2. +6
    -0
      Makefile
  3. +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`

Loading…
Cancel
Save