summaryrefslogtreecommitdiff
path: root/tests/sort/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sort/Makefile')
-rw-r--r--tests/sort/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/sort/Makefile b/tests/sort/Makefile
new file mode 100644
index 000000000..7fc8d30f6
--- /dev/null
+++ b/tests/sort/Makefile
@@ -0,0 +1,19 @@
+.PHONY: all
+all: sort-tests
+ ./sort-tests
+
+sort-tests: main build-script test.data.pl
+ ./main test.data.pl > $@.n
+ mv $@.n $@
+ chmod 755 $@
+
+.PHONY: distclean
+distclean:
+ rm -f t*.out
+
+.PHONY: clean
+clean: distclean
+
+.PHONY: realclean
+realclean: clean
+ rm -f sort-tests t*.in t*.exp t*.err