mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
22 lines
337 B
Makefile
22 lines
337 B
Makefile
# $FreeBSD$
|
|
|
|
MAN=
|
|
.include <src.opts.mk>
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.fe"
|
|
|
|
.PATH: ${GCCDIR}/cp
|
|
|
|
PROG= g++
|
|
SRCS+= g++spec.c
|
|
|
|
DPADD= ${LIBCPP} ${LIBIBERTY}
|
|
LDADD= ${LIBCPP} ${LIBIBERTY}
|
|
|
|
.if ${MK_CLANG_IS_CC} == "no"
|
|
LINKS= ${BINDIR}/g++ ${BINDIR}/c++
|
|
LINKS+= ${BINDIR}/g++ ${BINDIR}/CC
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|