aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
blob: d5c714632605f05f7fb9626bfc0cc79f16dc2bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
NANT	= $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)

all:
	# @export PATH=/usr/local/bin:$(PATH)
	./runprebuild.sh
	${NANT}
	find OpenSim -name \*.mdb -exec cp {} bin \; 

clean:
	# @export PATH=/usr/local/bin:$(PATH)
	${NANT} clean

test:
	${NANT} test

test-xml:
	${NANT} test-xml

tags:
	find OpenSim -name \*\.cs | xargs etags