mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't clobber the default for CFLAGS.
This commit is contained in:
parent
c9c1406f76
commit
a7dff00b1e
2 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
# @(#)Makefile 8.15 (Berkeley) 7/28/94
|
||||
# $FreeBSD$
|
||||
|
||||
PROG= dbtest
|
||||
OBJS= dbtest.o strerror.o
|
||||
|
|
@ -9,7 +10,7 @@ OBJS= dbtest.o strerror.o
|
|||
INC= -I${PORTDIR}/include -I${PORTDIR}
|
||||
OORG= -g
|
||||
#STAT= -DSTATISTICS
|
||||
CFLAGS= -D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}
|
||||
CFLAGS+=-D__DBINTERFACE_PRIVATE -DDEBUG ${STAT} ${OORG} ${INC}
|
||||
|
||||
dbtest: ${OBJS} ${PORTDIR}/libdb.a
|
||||
${CC} -o ${.TARGET} ${OBJS} ${PORTDIR}/libdb.a
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
PROG= rexecd
|
||||
MAN= rexecd.8
|
||||
|
||||
CFLAGS= -DOPIE
|
||||
CFLAGS+=-DOPIE
|
||||
|
||||
DPADD= ${LIBOPIE} ${LIBMD} ${LIBCRYPT} ${LIBUTIL}
|
||||
LDADD= -lopie -lmd -lcrypt -lutil
|
||||
|
|
|
|||
Loading…
Reference in a new issue