mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 02:30:44 -04:00
20 lines
595 B
Text
20 lines
595 B
Text
--- Makefile.orig 2006-01-25 18:03:13.000000000 -0500
|
|
+++ Makefile 2014-08-15 12:53:03.000000000 -0400
|
|
@@ -39,7 +39,7 @@
|
|
|
|
# Where to install the startup script
|
|
RCDIR = /usr/local/etc/rc.d
|
|
-CFLAGS = -g -O3 -Wall -Wno-parentheses ${INCLUDES}
|
|
+CFLAGS += -g -Wall -Wno-parentheses ${CPPFLAGS}
|
|
|
|
LINK=gcc
|
|
LFLAGS= -g
|
|
@@ -88,7 +88,7 @@
|
|
.FORCE:
|
|
|
|
tempcontrol: ${OBJS}
|
|
- ${CC} -o $@ ${CFLAGS} ${OBJS} -lreadline -lcurses -lutil
|
|
+ ${CC} -o $@ ${CFLAGS} ${OBJS} ${LDFLAGS} -lreadline -lcurses -lutil
|
|
|
|
clean:
|
|
rm -f *~ myparser* parser.h parserc.h parsercommands.c.sample parserkeys.h *.o ${PROG}
|