diff options
author | Sean Dague | 2009-02-07 03:18:58 +0000 |
---|---|---|
committer | Sean Dague | 2009-02-07 03:18:58 +0000 |
commit | faa9873dc66bbfc74f351749680c0f62fa8d7f38 (patch) | |
tree | a52d42bff0bc20644b53379c3f73e346928ee54c | |
parent | * minor: Apply second patch from http://opensimulator.org/mantis/view.php?id=... (diff) | |
download | opensim-SC_OLD-faa9873dc66bbfc74f351749680c0f62fa8d7f38.zip opensim-SC_OLD-faa9873dc66bbfc74f351749680c0f62fa8d7f38.tar.gz opensim-SC_OLD-faa9873dc66bbfc74f351749680c0f62fa8d7f38.tar.bz2 opensim-SC_OLD-faa9873dc66bbfc74f351749680c0f62fa8d7f38.tar.xz |
create a "make release" target which does the release instead of
debug build. Just a convenience for people on the Linux side of the
house
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -5,6 +5,10 @@ all: prebuild | |||
5 | ${NANT} | 5 | ${NANT} |
6 | find OpenSim -name \*.mdb -exec cp {} bin \; | 6 | find OpenSim -name \*.mdb -exec cp {} bin \; |
7 | 7 | ||
8 | release: prebuild | ||
9 | ${NANT} -D:project.config=Release | ||
10 | find OpenSim -name \*.mdb -exec cp {} bin \; | ||
11 | |||
8 | prebuild: | 12 | prebuild: |
9 | ./runprebuild.sh | 13 | ./runprebuild.sh |
10 | 14 | ||