diff options
Diffstat (limited to 'compat/zlib/contrib/puff/Makefile')
-rw-r--r-- | compat/zlib/contrib/puff/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/compat/zlib/contrib/puff/Makefile b/compat/zlib/contrib/puff/Makefile new file mode 100644 index 0000000..b6b6940 --- /dev/null +++ b/compat/zlib/contrib/puff/Makefile @@ -0,0 +1,8 @@ +puff: puff.c puff.h + cc -DTEST -o puff puff.c + +test: puff + puff zeros.raw + +clean: + rm -f puff puff.o |