aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/png2html/files/patch-aa
blob: 67a23d241226220808e87cc91d572b3b46237bf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- Makefile.orig   Sat Nov 13 14:42:36 1999
+++ Makefile    Sat Feb 19 02:41:12 2000
@@ -1,12 +1,14 @@
 # Makefile for png2html, (c) 1999 Geoff Holden
 
-CC      = gcc
-CFLAGS  = -O2 -Wall -lpng -lgd
+CC      ?= gcc
+INCLUDES= -ICHANGE_ME/include
+LDFLAGS = -LCHANGE_ME/lib
+LIBS    = -lpng -lgd
 
 all:    png2html
 
 png2html:
-   $(CC) -o png2html png2html.c $(CFLAGS)
+   $(CC) -o png2html png2html.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) $(LIBS)
 
 clean:
    rm -f *~ png2html