aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
blob: a1858b70579ab38981daca782cd38f284aaa7c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

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