mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 22:27:47 -04:00
*sigh* The GNU folks want to layer and abstract yet another standard API.
This time remove the xregex redirection and just directly use their own gnuregex.
This commit is contained in:
parent
95b19e85a0
commit
d536cae879
1 changed files with 6 additions and 2 deletions
|
|
@ -5,12 +5,16 @@
|
|||
.PATH: ${SRCDIR}/gas
|
||||
|
||||
PROG= gasp
|
||||
SRCS+= gasp.c macro.c sb.c hash.c
|
||||
SRCS+= gasp+%FIXED.c macro.c sb.c hash.c
|
||||
WARNS= 2
|
||||
CFLAGS+= -DBFD_ASSEMBLER
|
||||
CFLAGS+= -I${SRCDIR} -I${SRCDIR}/gas -I${SRCDIR}/gas/config
|
||||
CFLAGS+= -I${.CURDIR}/../as/${TARGET_ARCH}-freebsd -I${.CURDIR}/../as
|
||||
CFLAGS+= -I${.CURDIR}
|
||||
CFLAGS+= -I${SRCDIR} -I${SRCDIR}/gas -I${SRCDIR}/gas/config
|
||||
DPADD= ${RELTOP}/libiberty/libiberty.a
|
||||
LDADD= ${DPADD}
|
||||
|
||||
gasp+%FIXED.c: gasp.c
|
||||
sed -e 's|xregex\.h|gnuregex.h|g' ${.ALLSRC} >${.TARGET}
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue