diff options
Diffstat (limited to 'graphics/png2html/files/patch-Makefile')
-rw-r--r-- | graphics/png2html/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/png2html/files/patch-Makefile b/graphics/png2html/files/patch-Makefile new file mode 100644 index 000000000000..67a23d241226 --- /dev/null +++ b/graphics/png2html/files/patch-Makefile @@ -0,0 +1,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 |