mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
6caa8598ee
formation, originally published to Usenet-- probably comp.sources.unix-- in 1991 by Joe Nowakowski. This software is in the public domain. PR: 52879 Submitted by: Chuck Swiger <chuck@pkix.net>
26 lines
508 B
Plaintext
26 lines
508 B
Plaintext
--- Makefile.org Tue Jul 29 14:53:03 2003
|
|
+++ Makefile Tue Jul 29 14:53:37 2003
|
|
@@ -7,17 +7,17 @@
|
|
INSTALL = /usr/bin/install -s
|
|
|
|
# installation prefix
|
|
-PREFIX = /usr/local
|
|
+PREFIX = %%PREFIX%%
|
|
|
|
# Compiler flags
|
|
-CC ?= cc
|
|
-CDEBUG = -g -O -Wall
|
|
-COPT = -O3 -ffast-math
|
|
+CC = %%CC%%
|
|
+CDEBUG =
|
|
+COPT =
|
|
|
|
# Enable this to greatly increase the verbosity of the output
|
|
# DEFS = -DDEBUG -DVERBOSE
|
|
|
|
-CFLAGS ?= -pipe $(CDEBUG) $(DEFS)
|
|
+CFLAGS = %%CFLAGS%%
|
|
|
|
# Any libraries that are needed...
|
|
LDFLAGS = -lm
|