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

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

release: prebuild
	${NANT} -D:project.config=Release
	find OpenSim -name \*.mdb -exec cp {} bin \;

prebuild:
	./runprebuild.sh

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

test: prebuild
	${NANT} test

test-xml: prebuild
	${NANT} test-xml

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

include $(wildcard Makefile.local)