1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/devel/ecgi/files/patch-html2h::Makefile
Will Andrews 8a738c0aa7 Add ecgi 0.6.2, a library for the creation of CGI-based Web
applications.

PR:		25080
Submitted by:	George Reid <greid@ukug.uk.freebsd.org>
2001-03-12 22:08:31 +00:00

22 lines
431 B
Plaintext

--- html2h/Makefile Tue Feb 13 23:46:49 2001
+++ html2h/Makefile Tue Feb 13 23:49:09 2001
@@ -1,14 +1,14 @@
-CC = gcc
+CC?= gcc
INCS = -I../include/ -I.
-FLAGS = -Wall
+CFLAGS += -Wall
all: html2h
html2h: html2h.c html2h.h
- $(CC) html2h.c -o html2h $(INCS) $(FLAGS) ../obj/memfile.o
+ $(CC) html2h.c -o html2h $(INCS) $(CFLAGS) ../obj/memfile.o
install: all
cp html2h /usr/bin
clean:
- rm -f html2h
+ rm -f html2h