Makefile

Wed, 12 Mar 2003 06:39:22 +0000

author
eric
date
Wed, 12 Mar 2003 06:39:22 +0000
changeset 97
f2e13c2ff575
parent 91
e63762afae80
child 99
26f7edf15ef4
permissions
-rw-r--r--

changed bitblt_table_gen.c to generate both a header and a C source file (bitblt_tables.[ch]).

     1 # t2p: build a PDF file out of one or more TIFF Class F Group 4 files
     2 # Makefile
     3 # $Id: Makefile,v 1.22 2003/03/11 22:39:22 eric Exp $
     4 # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
     5 #
     6 # This program is free software; you can redistribute it and/or modify
     7 # it under the terms of the GNU General Public License version 2 as
     8 # published by the Free Software Foundation.  Note that permission is
     9 # not granted to redistribute this program under the terms of any
    10 # other version of the General Public License.
    11 #
    12 # This program is distributed in the hope that it will be useful,
    13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15 # GNU General Public License for more details.
    16 #
    17 # You should have received a copy of the GNU General Public License
    18 # along with this program; if not, write to the Free Software
    19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111  USA
    22 # Conditionals:  uncomment the following defines as nessary.  Note that a
    23 # "0" value is considered true by make, so to disable conditionals comment
    24 # them out or set them to a null string.
    26 #DEBUG=1
    27 #EFENCE=1
    28 #STATIC=1
    31 CFLAGS = -Wall
    32 LDFLAGS =
    33 LDLIBS = -ltiff -ljpeg -lz -lm
    35 ifdef DEBUG
    36 CFLAGS := $(CFLAGS) -g
    37 LDFLAGS := $(LDFLAGS) -g
    38 endif
    40 ifdef EFENCE
    41 LDLIBS := $(LDLIBS) -lefence -lpthread
    42 endif
    44 ifdef STATIC
    45 LDLIBS := -Wl,-static $(LDLIBS)
    46 endif
    49 YACC = bison
    50 YFLAGS = -d -v
    53 # -----------------------------------------------------------------------------
    54 # You shouldn't have to change anything below this point, but if you do please
    55 # let me know why so I can improve this Makefile.
    56 # -----------------------------------------------------------------------------
    58 VERSION = 0.11
    60 PACKAGE = t2p
    62 TARGETS = t2p
    64 CSRCS = t2p.c semantics.c \
    65 	bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \
    66 	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c pdf_g4.c
    67 OSRCS = scanner.l parser.y
    68 HDRS = t2p.h semantics.h bitblt.h bitblt_tables.h \
    69 	pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h
    70 MISC = COPYING Makefile
    72 DISTFILES = $(MISC) $(HDRS) $(CSRCS) $(OSRCS)
    73 DISTNAME = $(PACKAGE)-$(VERSION)
    76 AUTO_CSRCS = scanner.c parser.tab.c bitblt_tables.c
    77 AUTO_HDRS = parser.tab.h g4_tables.h
    78 AUTO_MISC = parser.output bitblt_tables.h
    81 -include Maketest
    84 all: $(TARGETS) $(TEST_TARGETS)
    87 t2p: t2p.o scanner.o semantics.o parser.tab.o \
    88 		bitblt.o bitblt_g4.o bitblt_tables.o \
    89 		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \
    90 		pdf_g4.o
    91 	$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
    92 ifndef DEBUG
    93 	strip $@
    94 endif
    97 bitblt_tables.h: bitblt_table_gen
    98 	./bitblt_table_gen -h >bitblt_tables.h
   100 bitblt_tables.c: bitblt_table_gen
   101 	./bitblt_table_gen -c >bitblt_tables.c
   103 bitblt_table_gen: bitblt_table_gen.o
   105 g4_tables.h: g4_table_gen
   106 	./g4_table_gen >g4_tables.h
   108 g4_table_gen: g4_table_gen.o
   111 dist: $(DISTFILES)
   112 	-rm -rf $(DISTNAME)
   113 	mkdir $(DISTNAME)
   114 	for f in $(DISTFILES); do ln $$f $(DISTNAME)/$$f; done
   115 	tar --gzip -chf $(DISTNAME).tar.gz $(DISTNAME)
   116 	-rm -rf $(DISTNAME)
   119 clean:
   120 	rm -f *.o *.d $(TARGETS) $(AUTO_CSRCS) $(AUTO_HDRS) $(AUTO_MISC)
   122 very_clean:
   123 	rm -f *.o *.d $(TARGETS) $(AUTO_CSRCS) $(AUTO_HDRS) $(AUTO_MISC) \
   124 		*~ *.pdf
   126 wc:
   127 	wc -l $(HDRS) $(CSRCS) $(OSRCS) $(MISC)
   129 ls-lt:
   130 	ls -lt $(HDRS) $(CSRCS) $(OSRCS) $(MISC)
   133 %.tab.c %.tab.h %.output: %.y
   134 	$(YACC) $(YFLAGS) $<
   137 ALL_CSRCS = $(CSRCS) $(AUTO_CSRCS) $(TEST_CSRCS)
   139 DEPENDS = $(ALL_CSRCS:.c=.d)
   141 %.d: %.c
   142 	$(CC) -M -MG $(CFLAGS) $< | sed -e 's@ /[^ ]*@@g' -e 's@^\(.*\)\.o:@\1.d \1.o:@' > $@
   144 include $(DEPENDS)