remove debug symbols when cleaning, added a simple test

This commit is contained in:
Paul Cruz 2017-08-11 14:42:15 -07:00
parent 9f67e8652e
commit bd308d806b

View File

@ -19,3 +19,11 @@ harness: $(HARNESS_FILES)
clean:
@$(RM) -f harness
@$(RM) -rf harness.dSYM
test: harness
@zstd README.md -o tmp.zst
@./harness tmp.zst tmp
@diff -s tmp README.md
@$(RM) -f tmp*
@make clean