Make port respect CFLAGS

This commit is contained in:
Chris D. Faulhaber 2000-02-19 13:44:07 +00:00
parent db18664186
commit f8dcccd9a1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26008

View file

@ -1,13 +1,14 @@
--- Makefile.orig Tue Feb 1 06:56:46 2000
+++ Makefile Sun Feb 6 13:31:49 2000
--- Makefile.orig Mon Jan 31 22:56:46 2000
+++ Makefile Sat Feb 19 08:43:33 2000
@@ -1,9 +1,9 @@
-CC = gcc
+CC?= gcc
LD = gcc
RM = rm -f
CFLAGS = -c -Wall -O2 -fomit-frame-pointer
-CFLAGS = -c -Wall -O2 -fomit-frame-pointer
-LDFLAGS = -s
-#LDFLAGS = -s -lcrypt
+CFLAGS+= -c -Wall
+#LDFLAGS = -s
+LDFLAGS = -s -lcrypt