mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
8a738c0aa7
applications. PR: 25080 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
22 lines
431 B
Plaintext
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
|