diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..48e3906 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,11 @@ +SHELL = /bin/sh + +.PHONY: all clean + +all: + ln -sf ../base91 b91enc + ln -sf ../base91 b91dec + $(SHELL) test.sh + +clean: + -rm -f b91??c *.b91 *.dat core |