summaryrefslogtreecommitdiff
path: root/devel/ecgi/files/patch-html2h::Makefile
blob: 7ec659184ed7a13e8239b0ebdff4e383cfcc35a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- 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