diff options
author | Sean Dague | 2008-07-10 00:05:21 +0000 |
---|---|---|
committer | Sean Dague | 2008-07-10 00:05:21 +0000 |
commit | 9a06bf47b96a393a95b3a5348368a79f9570121f (patch) | |
tree | 7f35205e56c6bffe9d973278eb0007e1aa446d59 /Makefile | |
parent | added .gitignore which makes using git-svn easier (diff) | |
download | opensim-SC_OLD-9a06bf47b96a393a95b3a5348368a79f9570121f.zip opensim-SC_OLD-9a06bf47b96a393a95b3a5348368a79f9570121f.tar.gz opensim-SC_OLD-9a06bf47b96a393a95b3a5348368a79f9570121f.tar.bz2 opensim-SC_OLD-9a06bf47b96a393a95b3a5348368a79f9570121f.tar.xz |
added convenience makefile and nant-color script. I've had these
on my laptop forever, and others might find them useful to be part
of the main tree.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b863345 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | all: | ||
2 | export PATH=/usr/local/bin:$(PATH) | ||
3 | ./runprebuild.sh | ||
4 | ./nant-color | ||
5 | find OpenSim -name \*.mdb -exec cp {} bin \; | ||
6 | |||
7 | clean: | ||
8 | export PATH=/usr/local/bin:$(PATH) | ||
9 | ./nant-color clean | ||
10 | |||
11 | tags: | ||
12 | find OpenSim -name \*\.cs | xargs etags | ||