Makefile

changeset 136
82d6f19753d6
parent 131
4b8c80d77f76
child 138
692e6411df52
     1.1 diff -r 5d3d2dccb3ff -r 82d6f19753d6 Makefile
     1.2 --- a/Makefile	Sun Mar 16 15:27:06 2003 +0000
     1.3 +++ b/Makefile	Sun Mar 16 15:37:16 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.32 2003/03/14 00:24:37 eric Exp $
     1.8 +# $Id: Makefile,v 1.33 2003/03/16 07:37:16 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 @@ -35,6 +35,8 @@
    1.13  ifdef DEBUG
    1.14  CFLAGS := $(CFLAGS) -g
    1.15  LDFLAGS := $(LDFLAGS) -g
    1.16 +else
    1.17 +CFLAGS := $(CFLAGS) -O3
    1.18  endif
    1.19  
    1.20  ifdef EFENCE
    1.21 @@ -55,7 +57,7 @@
    1.22  # let me know why so I can improve this Makefile.
    1.23  # -----------------------------------------------------------------------------
    1.24  
    1.25 -VERSION = 0.27
    1.26 +VERSION = 0.28
    1.27  
    1.28  PACKAGE = tumble
    1.29  
    1.30 @@ -69,7 +71,7 @@
    1.31  OSRCS = scanner.l parser.y
    1.32  HDRS = tumble.h semantics.h bitblt.h bitblt_tables.h \
    1.33  	pdf.h pdf_private.h pdf_util.h pdf_prim.h pdf_name_tree.h
    1.34 -MISC = COPYING Makefile
    1.35 +MISC = COPYING README INSTALL Makefile
    1.36  
    1.37  DISTFILES = $(MISC) $(HDRS) $(CSRCS) $(OSRCS)
    1.38  DISTNAME = $(PACKAGE)-$(VERSION)