diff options
Diffstat (limited to 'bin/ed/test/Makefile')
-rw-r--r-- | bin/ed/test/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/ed/test/Makefile b/bin/ed/test/Makefile new file mode 100644 index 0000000..750f388 --- /dev/null +++ b/bin/ed/test/Makefile @@ -0,0 +1,17 @@ +ED= ../obj/ed + +all: build test + @echo done + +build: mkscripts.sh + @echo building test scripts... + @chmod +x mkscripts.sh + @mkscripts.sh ${ED} + +test: build ckscripts.sh + @echo running test scripts... + @chmod +x ckscripts.sh + @ckscripts.sh ${ED} + +clean: + rm -f *.ed *.[oz] *~ |