mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
1d452080ef
Takes a PNG image and transorms it into HTML. PR: 14835 Submitted by: Chris D. Faulhaber <jedgar@fxp.org>
20 lines
455 B
Plaintext
20 lines
455 B
Plaintext
--- Makefile.orig Thu Nov 11 11:27:38 1999
|
|
+++ Makefile Thu Nov 11 19:00:05 1999
|
|
@@ -1,12 +1,14 @@
|
|
# Makefile for png2html, (c) 1999 Geoff Holden
|
|
|
|
CC = gcc
|
|
-CFLAGS = -O2 -Wall -lpng -lgd
|
|
+INCLUDES= -ICHANGE_ME/include/gd
|
|
+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
|