pcompress/utils/phash/Makefile.test
Moinak Ghosh 991482403b Add extension based file type detection and setting segment data type.
Use Bob Jenkins Minimal Perfect Hash to check for known extensions.
Use semaphore signaling and direct buffer copy for extraction.
Miscellaneous fixes.
2013-11-07 21:48:54 +05:30

19 lines
329 B
Makefile

CFLAGS = -O
.cc.o:
gcc $(CFLAGS) -c $<
O = lookupa.o recycle.o phash.o testperf.o
foo : $(O)
gcc -o foo $(O) -lm
# DEPENDENCIES
lookupa.o : lookupa.c standard.h lookupa.h
recycle.o : recycle.c standard.h recycle.h
phash.o : phash.c standard.h phash.h lookupa.h
testperf.o : testperf.c standard.h recycle.h phash.h