Deleted Added
sdiff udiff text old ( 143044 ) new ( 146261 )
full compact
1# $FreeBSD: head/tools/build/Makefile 143044 2005-03-02 16:40:51Z ru $
2
3.PATH: ${.CURDIR}/../../include
4
5LIB= egacy
6SRCS=
7INCSGROUPS= INCS
8INCS=
9
10BOOTSTRAPPING?= 0
11
12# usr.bin/mklocale needs <runefile.h>.
13.if !exists(/usr/include/runefile.h)
14INCS+= runefile.h
15.endif
16
17# usr.bin/gencat needs <nl_types.h>.
18.if ${BOOTSTRAPPING} < 600017
19INCS+= nl_types.h
20.endif
21
22.if empty(SRCS)
23SRCS= dummy.c
24.endif
25
26.if defined(CROSS_BUILD_TESTING)
27SUBDIR= cross-build
28.endif
29
30.include <bsd.lib.mk>