diff options
author | Petr Baudis <pasky@ucw.cz> | 2005-05-14 17:45:33 +0200 |
---|---|---|
committer | Petr Baudis <xpasky@machine.sinus.cz> | 2005-05-14 17:45:33 +0200 |
commit | dfe070511c652f2b8e1bf6540f238c9ca9ba41d3 (patch) | |
tree | ba598194272c4ab4d8bd11ad6fcba408b7dc9ecc | |
parent | ceede59ea90cebad52ba9c8263fef3fb6ef17593 (diff) | |
download | git-dfe070511c652f2b8e1bf6540f238c9ca9ba41d3.tar.gz git-dfe070511c652f2b8e1bf6540f238c9ca9ba41d3.tar.xz |
Implemented make test
make test in project root will recurse to the t/ subdirectory and run
make all there.
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -120,6 +120,9 @@ diff.o: $(LIB_H) strbuf.o: $(LIB_H) gitenv.o: $(LIB_H) +test: + make -C t/ all + clean: rm -f *.o mozilla-sha1/*.o ppc/*.o $(PROG) $(LIB_FILE) |