mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 10:40:19 -04:00
Start fresh on master, only apply needed patches on top now. Upstream commit: 56279fdef34eb28a4655b489b992c651bd8379fc Taken from: FreeBSD
22 lines
336 B
Makefile
22 lines
336 B
Makefile
# $FreeBSD$
|
|
|
|
MAN=
|
|
.include <bsd.own.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>
|