Deleted Added
full compact
Makefile (143044) Makefile (146261)
1# $FreeBSD: head/tools/build/Makefile 143044 2005-03-02 16:40:51Z ru $
1# $FreeBSD: head/tools/build/Makefile 146261 2005-05-16 09:32:41Z ru $
2
3.PATH: ${.CURDIR}/../../include
4
5LIB= egacy
6SRCS=
7INCSGROUPS= INCS
8INCS=
9
10BOOTSTRAPPING?= 0
11
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>
12# usr.bin/gencat needs <nl_types.h>.
13.if ${BOOTSTRAPPING} < 600017
14INCS+= nl_types.h
15.endif
16
17.if empty(SRCS)
18SRCS= dummy.c
19.endif
20
21.if defined(CROSS_BUILD_TESTING)
22SUBDIR= cross-build
23.endif
24
25.include <bsd.lib.mk>