opnsense-src/gnu/usr.bin/cc/libcpp/Makefile
Andrew Turner 1992e9a10c Add compiler support for the ARM EABI.
ARM EABI support is disabled by default and can be enabled by setting
WITH_ARM_EABI when building, however only the kernel-toolchain target will
work with this flag until the rest of the support is added.
2013-01-17 05:56:28 +00:00

25 lines
519 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
# Use our headers in preference to ones from ../cc_tools.
CFLAGS+= -I${.CURDIR} -I.
.include "../Makefile.inc"
.PATH: ${GCCLIB}/libcpp
LIB= cpp
SRCS= localedir.h
SRCS+= charset.c directives.c errors.c expr.c files.c \
identifiers.c init.c lex.c line-map.c macro.c mkdeps.c \
pch.c symtab.c traditional.c
INTERNALLIB=
WARNS?= 1
localedir.h: Makefile
echo '#define LOCALEDIR "/usr/share/locale"' > localedir.h
SRCS+= localedir.h
CLEANFILES+= localedir.h
.include <bsd.lib.mk>