1# $FreeBSD$
2
3WARNS?=		0
4
5.include <bsd.compiler.mk>
6
7MK_PIE:=	no	# Explicit libXXX.a references
8
9.if ${COMPILER_TYPE} == "clang"
10DEBUG_FILES_CFLAGS= -gline-tables-only
11.else
12DEBUG_FILES_CFLAGS= -g1
13.endif
14
15.if ${MACHINE_ARCH:Mmips*} && ${MACHINE_ARCH:Mmips64*} == ""
16CFLAGS+= -mxgot
17CXXFLAGS+= -mxgot
18.endif
19
20.include "../Makefile.inc"
21