diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-27 18:05:27 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-27 18:05:27 -0400 |
commit | e38c61d95fccd208e13dd14a31a567c3d431677a (patch) | |
tree | 4b0b72c5fa5cb7fda48f67f3abcfeaf9e92d9023 /Makefile | |
parent | c46e1ba7b564ecdced28889258051e35b5df228f (diff) | |
download | roux-e38c61d95fccd208e13dd14a31a567c3d431677a.tar.gz |
add centralized all and clean targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile index bb87706..ae15d15 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ -.PHONY: all check -all: - @make -C $@ +.PHONY: all clean check +all clean: + @make -C src $@ + @make -C minic $@ check: all test/go.sh all |