diff options
author | Junio C Hamano <junkio@cox.net> | 2007-04-28 15:32:49 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-29 02:05:11 -0700 |
commit | 96651ef50837e1c121def715dcf7416e9bcb1d0b (patch) | |
tree | 4ec6f49bb56f85f712246ba883abb56bf75513f7 /Makefile | |
parent | e0173ad9fcabfcabe54d65be2c8b6602f61079e6 (diff) | |
download | git-96651ef50837e1c121def715dcf7416e9bcb1d0b.tar.gz git-96651ef50837e1c121def715dcf7416e9bcb1d0b.tar.xz |
Make sure test-genrandom and test-chmtime are builtas part of the main build.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -933,13 +933,17 @@ endif ### Testing rules +TEST_PROGRAMS = test-chmtime$X test-genrandom$X + +all:: $(TEST_PROGRAMS) + # GNU make supports exporting all variables by "export" without parameters. # However, the environment gets quite big, and some programs have problems # with that. export NO_SVN_TESTS -test: all test-chmtime$X test-genrandom$X +test: all $(MAKE) -C t/ all test-date$X: test-date.c date.o ctype.o |