Don't default to -g in ${CFLAGS}. Developers can still use `make g=-g ...'

for debugging.  The default ${CFLAGS} still clobbers the system default
of -O2 to -O.
This commit is contained in:
bde 1995-01-21 14:41:45 +00:00
parent bd41d459e4
commit 99553d78fd

View File

@ -2,7 +2,7 @@
PROG= f2c
g = -O -g
g = -O
CFLAGS = $g -DANSI_Libraries -I${.CURDIR} -I.
SHELL = /bin/sh