mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
'target'. Latter is problematic in particular as apparently FreeBSD's bsd.prog.mk re-defines it under some circumstances. This causes an unexpected failures like -dumpmachine not working for cc while working fine for c++. Do not re-define IN_GCC in multipe places, it gets inherited from Makefile.in anyway. PR: gnu/110143 Submitted by: usleepless at gmail
17 lines
254 B
Makefile
17 lines
254 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.fe"
|
|
|
|
.PATH: ${GCCDIR}
|
|
|
|
PROG= c++filt
|
|
SRCS= cp-demangle.c
|
|
NO_MAN=
|
|
|
|
CFLAGS+= -DSTANDALONE_DEMANGLER -DVERSION=\"$(GCC_VERSION)\"
|
|
|
|
DPADD= ${LIBCC_INT}
|
|
LDADD= ${LIBCC_INT}
|
|
|
|
.include <bsd.prog.mk>
|