diff options
author | Sean Dague | 2008-09-08 20:34:45 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-08 20:34:45 +0000 |
commit | ce0a8d7beffccbaeb6b603a96b7729278c4c9e75 (patch) | |
tree | faccd65637c0dab11b2dd787c8985cd7f2c9452b /Makefile | |
parent | Fix component order on a quaternion for the sit target. This caused (diff) | |
download | opensim-SC_OLD-ce0a8d7beffccbaeb6b603a96b7729278c4c9e75.zip opensim-SC_OLD-ce0a8d7beffccbaeb6b603a96b7729278c4c9e75.tar.gz opensim-SC_OLD-ce0a8d7beffccbaeb6b603a96b7729278c4c9e75.tar.bz2 opensim-SC_OLD-ce0a8d7beffccbaeb6b603a96b7729278c4c9e75.tar.xz |
changes to Test directory structure per opensim-dev conversation
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,15 +1,18 @@ | |||
1 | NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) | 1 | NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) |
2 | 2 | ||
3 | all: | 3 | all: |
4 | @export PATH=/usr/local/bin:$(PATH) | 4 | # @export PATH=/usr/local/bin:$(PATH) |
5 | ./runprebuild.sh | 5 | ./runprebuild.sh |
6 | ${NANT} | 6 | ${NANT} |
7 | find OpenSim -name \*.mdb -exec cp {} bin \; | 7 | find OpenSim -name \*.mdb -exec cp {} bin \; |
8 | 8 | ||
9 | clean: | 9 | clean: |
10 | @export PATH=/usr/local/bin:$(PATH) | 10 | # @export PATH=/usr/local/bin:$(PATH) |
11 | ${NANT} clean | 11 | ${NANT} clean |
12 | 12 | ||
13 | test: | ||
14 | ${NANT} test | ||
15 | |||
13 | tags: | 16 | tags: |
14 | find OpenSim -name \*\.cs | xargs etags | 17 | find OpenSim -name \*\.cs | xargs etags |
15 | 18 | ||