mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
1bdc5ad345
- Support CC/CFLAGS properly PR: 16674 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
--- Makefile.orig Tue Apr 11 16:46:13 1995
|
|
+++ Makefile Fri Feb 11 09:53:49 2000
|
|
@@ -19,9 +19,9 @@
|
|
|
|
#CFLAGS = -g
|
|
|
|
-CFLAGS = -O
|
|
+CFLAGS?= -O
|
|
LDFLAGS= -lm
|
|
-CC = cc
|
|
+CC ?= cc
|
|
RM = /bin/rm -f
|
|
|
|
OBJS = main.o bitstrm.o buffer.o inits.o inptstrm.o interact.o multplex.o systems.o timecode.o
|