mirror of
https://git.freebsd.org/ports.git
synced 2025-06-18 11:10:32 -04:00
22 lines
572 B
Text
22 lines
572 B
Text
--- Makefile.orig Wed Feb 20 18:49:16 2002
|
|
+++ Makefile Sun Dec 1 09:01:06 2002
|
|
@@ -56,8 +56,8 @@
|
|
#FLAGS = -O -m -DMEM_CHECK
|
|
|
|
# for gcc
|
|
-CC = gcc
|
|
-FLAGS = -g -Wall -ansi -pedantic -DAUDIT -DMEM_DEBUG
|
|
+CC ?= gcc
|
|
+FLAGS = -ansi -pedantic -DAUDIT -DMEM_DEBUG
|
|
#FLAGS = -O3 -Wall -ansi -pedantic -DMEM_CHECK
|
|
|
|
# for the Compaq C compiler on Alpha/Linux
|
|
@@ -78,7 +78,7 @@
|
|
# ----- nothing should be changed below this line -----
|
|
|
|
COBJ = mem.o hash.o cpp.o lexer.o assert.o macro.o eval.o
|
|
-CFLAGS = $(FLAGS) -DSTAND_ALONE
|
|
+CFLAGS += $(FLAGS) -DSTAND_ALONE
|
|
|
|
all: ucpp
|
|
|