diff options
author | Dr Scofield | 2009-04-16 12:07:40 +0000 |
---|---|---|
committer | Dr Scofield | 2009-04-16 12:07:40 +0000 |
commit | 96259e82f6317994a7a0e4a25d1f70961b9065c1 (patch) | |
tree | cb59397b7c64526911916e3f808c787ae9070a1d /Makefile | |
parent | * Remove some super experimental stuff in BulletDotNETPlugin since it was cau... (diff) | |
download | opensim-SC_OLD-96259e82f6317994a7a0e4a25d1f70961b9065c1.zip opensim-SC_OLD-96259e82f6317994a7a0e4a25d1f70961b9065c1.tar.gz opensim-SC_OLD-96259e82f6317994a7a0e4a25d1f70961b9065c1.tar.bz2 opensim-SC_OLD-96259e82f6317994a7a0e4a25d1f70961b9065c1.tar.xz |
move inclusion of Makefile.local to the end to avoid surprising results
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,5 @@ | |||
1 | NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) | 1 | NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) |
2 | 2 | ||
3 | include $(wildcard Makefile.local) | ||
4 | |||
5 | all: prebuild | 3 | all: prebuild |
6 | # @export PATH=/usr/local/bin:$(PATH) | 4 | # @export PATH=/usr/local/bin:$(PATH) |
7 | ${NANT} | 5 | ${NANT} |
@@ -27,3 +25,5 @@ test-xml: prebuild | |||
27 | tags: | 25 | tags: |
28 | find OpenSim -name \*\.cs | xargs etags | 26 | find OpenSim -name \*\.cs | xargs etags |
29 | 27 | ||
28 | include $(wildcard Makefile.local) | ||
29 | |||