--- 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