diff --git a/contrib/bzip2/Makefile b/contrib/bzip2/Makefile new file mode 100644 index 0000000..2784279 --- /dev/null +++ b/contrib/bzip2/Makefile @@ -0,0 +1,12 @@ +OBJECTS = bzlib.o blocksort.o crctable.o compress.o decompress.o huffman.o randtable.o +CFLAGS = -DLINUX -D_FILE_OFFSET_BITS=64 -O2 -Wall + +.PHONY: all +all: $(OBJECTS) + +.PHONY: clean +clean: + rm -f *.o + +%.o: %.c + gcc -g -c $(CFLAGS) $<