add missing Makefile from master, put me on contributors
parent
c6f8b5d682
commit
b22ad8a69b
|
@ -13,6 +13,7 @@ people that make the day to day of OpenSim happen.
|
||||||
* Robert Adams (MisterBlue)
|
* Robert Adams (MisterBlue)
|
||||||
* Oren Hurvitz (Kitely)
|
* Oren Hurvitz (Kitely)
|
||||||
* Kevin Cozens
|
* Kevin Cozens
|
||||||
|
* Leal Duarte (Ubit Umarov)
|
||||||
|
|
||||||
= Core Developers Following the White Rabbit =
|
= Core Developers Following the White Rabbit =
|
||||||
Core developers who have temporarily (we hope) gone chasing the white rabbit.
|
Core developers who have temporarily (we hope) gone chasing the white rabbit.
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
# hey, emacs! this is a -*- makefile -*-
|
||||||
|
#
|
||||||
|
# OpenSim makefile
|
||||||
|
#
|
||||||
|
|
||||||
|
RUBY = $(strip $(shell which ruby 2>/dev/null))
|
||||||
|
ifeq ($(RUBY),)
|
||||||
|
NANT = nant
|
||||||
|
else
|
||||||
|
NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
|
||||||
|
endif
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
cscope-tags:
|
||||||
|
find OpenSim -name \*\.cs -fprint cscope.files
|
||||||
|
cscope -b
|
||||||
|
|
||||||
|
include $(wildcard Makefile.local)
|
||||||
|
|
Loading…
Reference in New Issue