aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2009-09-03 19:10:04 +0100
committerJustin Clark-Casey (justincc)2009-09-03 19:10:04 +0100
commit87ec14c5dc9cbb3139e6bf56c1ff12f5b0108639 (patch)
treebef580efe4cb2c12ba9e14b2172f3d8f8a5799d1
parentMSSQL Minor tweak to recent patch for region loading (Thanks Grumly57 for spo... (diff)
parentmaking Makefile a bit more robust: can now cope with missing ruby in a (diff)
downloadopensim-SC_OLD-87ec14c5dc9cbb3139e6bf56c1ff12f5b0108639.zip
opensim-SC_OLD-87ec14c5dc9cbb3139e6bf56c1ff12f5b0108639.tar.gz
opensim-SC_OLD-87ec14c5dc9cbb3139e6bf56c1ff12f5b0108639.tar.bz2
opensim-SC_OLD-87ec14c5dc9cbb3139e6bf56c1ff12f5b0108639.tar.xz
Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim
-rw-r--r--Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 46ddc2f..493cdca 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,14 @@
1NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) 1# hey, emacs! this is a -*- makefile -*-
2#
3# OpenSim makefile
4#
5
6RUBY = $(strip $(shell which ruby 2>/dev/null))
7ifeq ($(RUBY),)
8NANT = nant
9else
10NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi)
11endif
2 12
3all: prebuild 13all: prebuild
4 # @export PATH=/usr/local/bin:$(PATH) 14 # @export PATH=/usr/local/bin:$(PATH)
@@ -14,7 +24,7 @@ prebuild:
14 24
15clean: 25clean:
16 # @export PATH=/usr/local/bin:$(PATH) 26 # @export PATH=/usr/local/bin:$(PATH)
17 ${NANT} clean 27 -${NANT} clean
18 28
19test: prebuild 29test: prebuild
20 ${NANT} test 30 ${NANT} test