aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/tests/Makefile
diff options
context:
space:
mode:
authorlbsa712009-02-19 14:54:21 +0000
committerlbsa712009-02-19 14:54:21 +0000
commit549c615e0e7fbc4fa284de533db673e7e2fd665b (patch)
treeeb1b42f9ea8c581219a4f0743ea4e92d253037ee /Prebuild/tests/Makefile
parent* Changed all AssemblyInfo to explicit version 1.0.0.0 to not confuse poor po... (diff)
downloadopensim-SC_OLD-549c615e0e7fbc4fa284de533db673e7e2fd665b.zip
opensim-SC_OLD-549c615e0e7fbc4fa284de533db673e7e2fd665b.tar.gz
opensim-SC_OLD-549c615e0e7fbc4fa284de533db673e7e2fd665b.tar.bz2
opensim-SC_OLD-549c615e0e7fbc4fa284de533db673e7e2fd665b.tar.xz
* reverted the revert of the revert. What can I say? I'm calling this a day, and will get back up on the horse tomorrow.
Diffstat (limited to '')
-rw-r--r--Prebuild/tests/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/Prebuild/tests/Makefile b/Prebuild/tests/Makefile
deleted file mode 100644
index 4a8ddf4..0000000
--- a/Prebuild/tests/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
1#
2# Executable
3#
4
5# Executables
6PREBUILD = mono ../src/bin/Release/prebuild.exe /target makefile
7
8# Files
9PREBUILDS = $(wildcard *.prebuild)
10RESULTS = $(PREBUILDS:prebuild=results)
11TESTS = $(PREBUILDS:prebuild=test)
12
13all: $(TESTS)
14
15clean:
16 rm -f *~ *.log
17 rm -f $(RESULTS)
18
19%.test: %.prebuild
20 $(PREBUILD) /log $*.log /file $*.prebuild /ppi $*.results >& /dev/null
21 if ! cmp $*.expected $*.results; then \
22 echo $*.prebuild failed; \
23 false; \
24 fi