shithub: jbig2

ref: fa37e9a7b8c933da66c2850a22c10559f38c68bb
dir: /makefile/

View raw version
CFLAGS=-Wall -g

all:	jbig2

jbig2:	jbig2.o jbig2_huffman.o jbig2_arith.o

test_huffman:	jbig2_huffman.c
	gcc $(CFLAGS) -DTEST jbig2_huffman.c -o test_huffman

test_arith:	jbig2_arith.c
	gcc $(CFLAGS) -DTEST -DDEBUG jbig2_arith.c -o test_arith