diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-13 10:45:32 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-14 09:20:13 -0700 |
commit | 462cce1852c80a2d71bfec1a2ead10fe0a9e2486 (patch) | |
tree | 71b212e6d8ba53b80b91ad9c82bbdf484d01ab57 /Makefile | |
parent | 27bc8930ba9ba67f2de29a03232a948316409ded (diff) |
Makefile: Make "make test" depend on the main program.
Otherwise, running "make test" can run an old version of the code,
(even when new changes are sitting in the source waiting to be
compiled).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o xtalloc.o glcpp-lex.c: glcpp-parse.h -test: +test: glcpp @(cd tests; ./glcpp-test) clean: |