mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
0ced235a44
PR: 11904 Submitted by: maintainer
21 lines
560 B
Plaintext
21 lines
560 B
Plaintext
--- Makefile.in.orig Mon May 24 14:32:18 1999
|
|
+++ Makefile.in Wed May 26 18:44:22 1999
|
|
@@ -9,7 +9,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 = @PROJECT_NAME@
|
|
@@ -40,7 +40,7 @@
|
|
srcdir = @srcdir@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
-CFLAGS += -O2 -Wall
|
|
+CFLAGS ?= -O2 -Wall
|
|
ALL_CFLAGS = $(CFLAGS) -I$(srcdir) $(COMPRESSION)
|
|
|
|
all: $(TARGET)
|