diff options
author | UbitUmarov | 2015-09-28 11:57:16 +0100 |
---|---|---|
committer | UbitUmarov | 2015-09-28 11:57:16 +0100 |
commit | b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40 (patch) | |
tree | d1f1e8a3420698f257d679d106bcdecab2807157 | |
parent | remove virtual declarations master doesnt have (diff) | |
download | opensim-SC-b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40.zip opensim-SC-b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40.tar.gz opensim-SC-b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40.tar.bz2 opensim-SC-b22ad8a69b1a77ec0fb98a1eb64cc8c9b44f2f40.tar.xz |
add missing Makefile from master, put me on contributors
Diffstat (limited to '')
-rw-r--r-- | CONTRIBUTORS.txt | 1 | ||||
-rw-r--r-- | Makefile | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 41c22b8..95eccf1 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt | |||
@@ -13,6 +13,7 @@ people that make the day to day of OpenSim happen. | |||
13 | * Robert Adams (MisterBlue) | 13 | * Robert Adams (MisterBlue) |
14 | * Oren Hurvitz (Kitely) | 14 | * Oren Hurvitz (Kitely) |
15 | * Kevin Cozens | 15 | * Kevin Cozens |
16 | * Leal Duarte (Ubit Umarov) | ||
16 | 17 | ||
17 | = Core Developers Following the White Rabbit = | 18 | = Core Developers Following the White Rabbit = |
18 | Core developers who have temporarily (we hope) gone chasing the white rabbit. | 19 | Core developers who have temporarily (we hope) gone chasing the white rabbit. |
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..493cdca --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,43 @@ | |||
1 | # hey, emacs! this is a -*- makefile -*- | ||
2 | # | ||
3 | # OpenSim makefile | ||
4 | # | ||
5 | |||
6 | RUBY = $(strip $(shell which ruby 2>/dev/null)) | ||
7 | ifeq ($(RUBY),) | ||
8 | NANT = nant | ||
9 | else | ||
10 | NANT = $(shell if test "$$EMACS" = "t" ; then echo "nant"; else echo "./nant-color"; fi) | ||
11 | endif | ||
12 | |||
13 | all: prebuild | ||
14 | # @export PATH=/usr/local/bin:$(PATH) | ||
15 | ${NANT} | ||
16 | find OpenSim -name \*.mdb -exec cp {} bin \; | ||
17 | |||
18 | release: prebuild | ||
19 | ${NANT} -D:project.config=Release | ||
20 | find OpenSim -name \*.mdb -exec cp {} bin \; | ||
21 | |||
22 | prebuild: | ||
23 | ./runprebuild.sh | ||
24 | |||
25 | clean: | ||
26 | # @export PATH=/usr/local/bin:$(PATH) | ||
27 | -${NANT} clean | ||
28 | |||
29 | test: prebuild | ||
30 | ${NANT} test | ||
31 | |||
32 | test-xml: prebuild | ||
33 | ${NANT} test-xml | ||
34 | |||
35 | tags: | ||
36 | find OpenSim -name \*\.cs | xargs etags | ||
37 | |||
38 | cscope-tags: | ||
39 | find OpenSim -name \*\.cs -fprint cscope.files | ||
40 | cscope -b | ||
41 | |||
42 | include $(wildcard Makefile.local) | ||
43 | |||