mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
have the Makefile run prebuild on test targets as well as it
helps to actually include new test files to run prior to upload.
This commit is contained in:
10
Makefile
10
Makefile
@@ -1,8 +1,10 @@
|
|||||||
NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
|
NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
|
||||||
|
|
||||||
all:
|
prebuild:
|
||||||
# @export PATH=/usr/local/bin:$(PATH)
|
|
||||||
./runprebuild.sh
|
./runprebuild.sh
|
||||||
|
|
||||||
|
all: prebuild
|
||||||
|
# @export PATH=/usr/local/bin:$(PATH)
|
||||||
${NANT}
|
${NANT}
|
||||||
find OpenSim -name \*.mdb -exec cp {} bin \;
|
find OpenSim -name \*.mdb -exec cp {} bin \;
|
||||||
|
|
||||||
@@ -10,10 +12,10 @@ clean:
|
|||||||
# @export PATH=/usr/local/bin:$(PATH)
|
# @export PATH=/usr/local/bin:$(PATH)
|
||||||
${NANT} clean
|
${NANT} clean
|
||||||
|
|
||||||
test:
|
test: prebuild
|
||||||
${NANT} test
|
${NANT} test
|
||||||
|
|
||||||
test-xml:
|
test-xml: prebuild
|
||||||
${NANT} test-xml
|
${NANT} test-xml
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
Reference in New Issue
Block a user