mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 06:35:31 -04:00
22 lines
347 B
Makefile
22 lines
347 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.fe"
|
|
|
|
PROG= gcc
|
|
MAN= gcc.1
|
|
SRCS+= gccspec.c
|
|
|
|
.if ${MK_SHARED_TOOLCHAIN} == "no"
|
|
NO_SHARED?=yes
|
|
.endif
|
|
|
|
MLINKS= gcc.1 g++.1
|
|
.if ${MK_CLANG_IS_CC} == "no"
|
|
LINKS= ${BINDIR}/gcc ${BINDIR}/cc
|
|
MLINKS+= gcc.1 cc.1 gcc.1 c++.1 gcc.1 CC.1
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|