have the Makefile run prebuild on test targets as well as it

helps to actually include new test files to run prior to upload.
0.6.0-stable
Sean Dague 2008-09-10 20:31:24 +00:00
parent cc7ff3ac2e
commit b7dde33478
1 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,10 @@
NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
all:
# @export PATH=/usr/local/bin:$(PATH)
prebuild:
./runprebuild.sh
all: prebuild
# @export PATH=/usr/local/bin:$(PATH)
${NANT}
find OpenSim -name \*.mdb -exec cp {} bin \;
@ -10,10 +12,10 @@ clean:
# @export PATH=/usr/local/bin:$(PATH)
${NANT} clean
test:
test: prebuild
${NANT} test
test-xml:
test-xml: prebuild
${NANT} test-xml
tags: