diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-27 19:13:34 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-03-27 19:13:34 -0400 |
commit | 205221226f750700f4a0adc077c94d1185f8dd89 (patch) | |
tree | 68189b96fca78838ce707468a2655d27f46734f4 /src/Makefile | |
parent | 3406a5fb2f64dc94a5fff4cb61b4c9a48a551b49 (diff) | |
download | roux-205221226f750700f4a0adc077c94d1185f8dd89.tar.gz |
move check rule into src/
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 9b6b7a5..6adfbd3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ config.h: all: $(BIN) clean: rm -f $(BIN) $(OBJ) -check: - make -C .. check +check: $(BIN) + ../test/go.sh all .PHONY: all clean check syndoc |