1--- ./Makefile.orig 2014-03-27 18:47:15.000000000 +0000 2+++ ./Makefile 2014-06-21 22:53:57.000000000 +0000 3@@ -1,24 +1,22 @@ 4 # Unix makefile for JBIG-KIT 5 6 # Select an ANSI/ISO C compiler here, GNU gcc is recommended 7-CC = gcc 8+#CC = gcc 9 10 # Options for the compiler: A high optimization level is suggested 11-CFLAGS = -O2 -W -Wno-unused-result 12+CFLAGS += -W # -Wno-unused-result -- older compilers don't have this 13 # CFLAGS = -O -g -W -Wall -Wno-unused-result -ansi -pedantic # -DDEBUG 14 15-export CC CFLAGS 16- 17 VERSION=2.1 18 19 all: lib pbm 20 @echo "Enter 'make test' in order to start some automatic tests." 21 22 lib: 23- cd libjbig && $(MAKE) -e 24+ cd libjbig && $(MAKE) 25 26 pbm: lib 27- cd pbmtools && $(MAKE) -e 28+ cd pbmtools && $(MAKE) 29 30 test: lib pbm 31 cd libjbig && $(MAKE) test 32