Makefile

changeset 131
4b8c80d77f76
parent 129
ab2409bdaa8c
child 136
82d6f19753d6
     1.1 diff -r d47b66e1722f -r 4b8c80d77f76 Makefile
     1.2 --- a/Makefile	Fri Mar 14 07:08:52 2003 +0000
     1.3 +++ b/Makefile	Fri Mar 14 08:24:37 2003 +0000
     1.4 @@ -1,6 +1,6 @@
     1.5  # tumble: build a PDF file from image files
     1.6  # Makefile
     1.7 -# $Id: Makefile,v 1.31 2003/03/13 03:50:59 eric Exp $
     1.8 +# $Id: Makefile,v 1.32 2003/03/14 00:24:37 eric Exp $
     1.9  # Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
    1.10  #
    1.11  # This program is free software; you can redistribute it and/or modify
    1.12 @@ -55,7 +55,7 @@
    1.13  # let me know why so I can improve this Makefile.
    1.14  # -----------------------------------------------------------------------------
    1.15  
    1.16 -VERSION = 0.26
    1.17 +VERSION = 0.27
    1.18  
    1.19  PACKAGE = tumble
    1.20  
    1.21 @@ -63,7 +63,8 @@
    1.22  
    1.23  CSRCS = tumble.c semantics.c \
    1.24  	bitblt.c bitblt_table_gen.c bitblt_g4.c g4_table_gen.c \
    1.25 -	pdf.c pdf_util.c pdf_prim.c pdf_bookmark.c pdf_name_tree.c \
    1.26 +	pdf.c pdf_util.c pdf_prim.c pdf_name_tree.c \
    1.27 +	pdf_bookmark.c pdf_page_label.c \
    1.28  	pdf_text.c pdf_g4.c pdf_jpeg.c
    1.29  OSRCS = scanner.l parser.y
    1.30  HDRS = tumble.h semantics.h bitblt.h bitblt_tables.h \
    1.31 @@ -87,7 +88,8 @@
    1.32  
    1.33  tumble: tumble.o scanner.o semantics.o parser.tab.o \
    1.34  		bitblt.o bitblt_g4.o bitblt_tables.o g4_tables.o \
    1.35 -		pdf.o pdf_util.o pdf_prim.o pdf_bookmark.o pdf_name_tree.o \
    1.36 +		pdf.o pdf_util.o pdf_prim.o pdf_name_tree.o \
    1.37 +		pdf_bookmark.o pdf_page_label.o \
    1.38  		pdf_text.o pdf_g4.o pdf_jpeg.o
    1.39  	$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
    1.40  ifndef DEBUG