mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
24 lines
496 B
Makefile
24 lines
496 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
# 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>
|