Last commit for Makefile: b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40

add missing Makefile from master, put me on contributors

UbitUmarov [2015-09-28 10:57:16]
 add missing Makefile from master, put me on contributors
# 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)
ViewGit