mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
f0b3ca663a
PR: 11461 Submitted by: Martin Kammerhofer dada@sbox.tu-graz.ac.at
21 lines
586 B
Plaintext
21 lines
586 B
Plaintext
--- Makefile.in.orig Wed Apr 21 19:21:32 1999
|
|
+++ Makefile.in Wed Apr 21 23:42:12 1999
|
|
@@ -12,7 +12,7 @@
|
|
# for gzip because otherwise the load on the web server
|
|
# grows without having big benefits.
|
|
# COMPRESSION = -DCOMPRESSION=4
|
|
-COMPRESSION = -DCOMPRESSION=1
|
|
+COMPRESSION ?= -DCOMPRESSION=1
|
|
|
|
# Dont change things beyond this line.
|
|
TARGET = c2html
|
|
@@ -43,7 +43,7 @@
|
|
srcdir = @srcdir@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
-CFLAGS += -O2 -Wall -pedantic
|
|
+CFLAGS ?= -O2 -Wall -Wcast-qual -pedantic
|
|
ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
|
|
|
|
all: $(TARGET)
|