Makefile

changeset 12
c3e2c2344560
parent 11
30d18cf8bb67
child 15
dda3d673b82b
     1.1 --- a/Makefile	Sat Dec 29 17:45:43 2001 +0000
     1.2 +++ b/Makefile	Sat Dec 29 18:59:47 2001 +0000
     1.3 @@ -1,6 +1,6 @@
     1.4  # tiff2pdf: build a PDF file out of one or more TIFF Class F Group 4 files
     1.5  # Makefile
     1.6 -# $Id: Makefile,v 1.4 2001/12/29 09:44:27 eric Exp $
     1.7 +# $Id: Makefile,v 1.5 2001/12/29 10:59:17 eric Exp $
     1.8  # Copyright 2001 Eric Smith <eric@brouhaha.com>
     1.9  #
    1.10  # This program is free software; you can redistribute it and/or modify
    1.11 @@ -24,12 +24,14 @@
    1.12  YACC = bison
    1.13  YFLAGS = -d -v
    1.14  
    1.15 +SRCS = bitblt.c bitblt_test.c tiff2pdf.c
    1.16 +HDRS = type.h bitblt.h tiff2pdf.h
    1.17 +MISC = Makefile scanner.l parser.y
    1.18 +
    1.19  tiff2pdf: tiff2pdf.o scanner.o parser.tab.o
    1.20  
    1.21  bitblt_test: bitblt_test.o bitblt.o
    1.22  
    1.23 -pandamain: pandamain.o
    1.24 -
    1.25  
    1.26  %.tab.c %.tab.h: %.y
    1.27  	$(YACC) $(YFLAGS) $<