mirror of
https://github.com/schnaader/precomp-cpp
synced 2026-08-23 00:23:04 -04:00
Add separate Makefile for contrib/bzip2
This commit is contained in:
parent
eaaead7458
commit
de05deb730
1 changed files with 12 additions and 0 deletions
12
contrib/bzip2/Makefile
Normal file
12
contrib/bzip2/Makefile
Normal file
|
|
@ -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) $<
|
||||
Loading…
Add table
Add a link
Reference in a new issue