diff options
author | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
---|---|---|
committer | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
commit | fe6c36e18042603bb096d3685fe3988e32331ebf (patch) | |
tree | 359c42bed67e5eee7342b2e95810dfe501c69665 /test/Makefile |
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 |