# Makefile for png2html, (c) 1999 Geoff Holden CC ?= gcc INCLUDES= -I/usr/local/include LDFLAGS = -L/usr/local/lib LIBS = -lpng -lgd all: png2html png2html: $(CC) -o png2html png2html.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) $(LIBS) clean: rm -f *~ png2html