xref: /freebsd/usr.bin/mkcsmapper/Makefile (revision 19261079)
1# $FreeBSD$
2
3.PATH: ${SRCTOP}/lib/libc/iconv
4
5PROG=	mkcsmapper
6.if defined(BOOTSTRAPPING)
7# When bootstrapping, the host libc might not contain these expected symbols
8# so compile them directly into the binary.
9SRCS=	citrus_bcs.c citrus_db_factory.c citrus_db_hash.c \
10	citrus_lookup_factory.c citrus_pivot_factory.c
11.endif
12LDFLAGS+= -L${SRCTOP}/lib/libc
13
14NO_WMISSING_VARIABLE_DECLARATIONS=
15
16.include "${.CURDIR}/Makefile.inc"
17.include <bsd.prog.mk>
18