Makefile revision 169718
1# $FreeBSD: head/gnu/usr.bin/cc/libcpp/Makefile 169718 2007-05-19 04:25:59Z kan $
2
3# Use our headers in preference to ones from ../cc_tools.
4CFLAGS+=	-I${.CURDIR} -I.
5
6.include "../Makefile.inc"
7
8.PATH: ${GCCLIB}/libcpp
9
10LIB=	cpp
11SRCS=	localedir.h
12SRCS+=	charset.c directives.c errors.c expr.c files.c \
13	identifiers.c init.c lex.c line-map.c macro.c mkdeps.c \
14	pch.c symtab.c traditional.c
15INTERNALLIB=
16WARNS?=	1
17
18localedir.h:	Makefile
19	echo	'#define LOCALEDIR "/usr/share/locale"' > localedir.h
20SRCS+=		localedir.h
21CLEANFILES+=	localedir.h
22
23.include <bsd.lib.mk>
24