Makefile

changeset 91
e63762afae80
parent 90
4830f4d7ba7a
child 97
f2e13c2ff575
     1.1 --- a/Makefile	Sat Mar 08 10:02:13 2003 +0000
     1.2 +++ b/Makefile	Mon Mar 10 09:49:50 2003 +0000
     1.3 @@ -1,6 +1,6 @@
     1.4  # t2p: build a PDF file out of one or more TIFF Class F Group 4 files
     1.5  # Makefile
     1.6 -# $Id: Makefile,v 1.20 2003/03/08 02:02:13 eric Exp $
     1.7 +# $Id: Makefile,v 1.21 2003/03/10 01:49:49 eric Exp $
     1.8  # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
     1.9  #
    1.10  # This program is free software; you can redistribute it and/or modify
    1.11 @@ -62,9 +62,8 @@
    1.12  TARGETS = t2p
    1.13  
    1.14  CSRCS = t2p.c semantics.c \
    1.15 -	bitblt.c bitblt_table_gen.c \
    1.16 -	pdf_g4.c pdf_g4_table_gen.c \
    1.17 -	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c
    1.18 +	bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \
    1.19 +	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c pdf_g4.c
    1.20  OSRCS = scanner.l parser.y
    1.21  HDRS = t2p.h semantics.h bitblt.h \
    1.22  	pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h
    1.23 @@ -75,7 +74,7 @@
    1.24  
    1.25  
    1.26  AUTO_CSRCS = scanner.c parser.tab.c
    1.27 -AUTO_HDRS = parser.tab.h bitblt_tables.h pdf_g4_tables.h
    1.28 +AUTO_HDRS = parser.tab.h bitblt_tables.h g4_tables.h
    1.29  AUTO_MISC = parser.output
    1.30  
    1.31  
    1.32 @@ -85,9 +84,9 @@
    1.33  all: $(TARGETS) $(TEST_TARGETS)
    1.34  
    1.35  
    1.36 -t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o \
    1.37 -		pdf_g4.o \
    1.38 -		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o
    1.39 +t2p: t2p.o scanner.o semantics.o parser.tab.o bitblt.o bitblt_g4.o \
    1.40 +		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \
    1.41 +		pdf_g4.o
    1.42  	$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
    1.43  ifndef DEBUG
    1.44  	strip $@
    1.45 @@ -99,10 +98,10 @@
    1.46  
    1.47  bitblt_table_gen: bitblt_table_gen.o
    1.48  
    1.49 -pdf_g4_tables.h: pdf_g4_table_gen
    1.50 -	./pdf_g4_table_gen >pdf_g4_tables.h
    1.51 +g4_tables.h: g4_table_gen
    1.52 +	./g4_table_gen >g4_tables.h
    1.53  
    1.54 -pdf_g4_table_gen: pdf_g4_table_gen.o
    1.55 +g4_table_gen: g4_table_gen.o
    1.56  
    1.57  
    1.58  dist: $(DISTFILES)