ref: 0f218050d34326a38a89f07e772a7c4fc350fb10
parent: 971100aa3b5f56756fbd31a03ca4212209881f09
author: raph <raph@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Thu Apr 25 19:24:35 EDT 2002
Makefile changes to add jbig2_mmr functions. git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@49 ded80894-8fb9-0310-811b-c03f3676ab4d
--- a/makefile
+++ b/makefile
@@ -1,11 +1,12 @@
CC=cc
CFLAGS=-Wall -g -I/usr/local/include
+LDLIBS=-lefence
APPS=jbig2dec test_arith test_huffman test_png
all: $(APPS)
-jbig2dec: jbig2.o jbig2dec.o jbig2_huffman.o jbig2_arith.o jbig2_image.o jbig2_generic.o jbig2_symbol_dict.o jbig2_arith_int.o
+jbig2dec: jbig2.o jbig2dec.o jbig2_huffman.o jbig2_arith.o jbig2_image.o jbig2_generic.o jbig2_symbol_dict.o jbig2_arith_int.o jbig2_mmr.o
test_huffman: jbig2_huffman.c
$(CC) $(CFLAGS) -DTEST jbig2_huffman.c -o test_huffman