aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorSean Dague2008-09-08 20:34:45 +0000
committerSean Dague2008-09-08 20:34:45 +0000
commitce0a8d7beffccbaeb6b603a96b7729278c4c9e75 (patch)
treefaccd65637c0dab11b2dd787c8985cd7f2c9452b /Makefile
parentFix component order on a quaternion for the sit target. This caused (diff)
downloadopensim-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 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index af504ac..a1858b7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,18 @@
1NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) 1NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
2 2
3all: 3all:
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
9clean: 9clean:
10 @export PATH=/usr/local/bin:$(PATH) 10 # @export PATH=/usr/local/bin:$(PATH)
11 ${NANT} clean 11 ${NANT} clean
12 12
13test:
14 ${NANT} test
15
13tags: 16tags:
14 find OpenSim -name \*\.cs | xargs etags 17 find OpenSim -name \*\.cs | xargs etags
15 18