mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
8ae5d2d4f9
- Respect CC and PREFIX. - Add a knob to build a static binary. (which is useful to put on a fixit floppy etc.) Approved by: Andrew Stevenson <andrew@ugh.net.au> (MAINTAINER)
17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
--- make.defs.orig Sun May 14 21:07:18 2000
|
|
+++ make.defs Sat Sep 16 17:44:32 2000
|
|
@@ -1,10 +1,10 @@
|
|
#
|
|
#
|
|
#
|
|
-CC = gcc
|
|
-CFLAGS = -Wall -O2 -pedantic
|
|
+CC ?= gcc
|
|
+CFLAGS += -Wall -pedantic
|
|
LDFLAGS =
|
|
-MAKEDEP = gcc -M
|
|
+MAKEDEP = $(CC) -M
|
|
INSTALL = install
|
|
RM = rm -f
|
|
#
|