Files
opensim/Makefile
Sean Dague b7dde33478 have the Makefile run prebuild on test targets as well as it
helps to actually include new test files to run prior to upload.
2008-09-10 20:31:24 +00:00

24 lines
408 B
Makefile

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