blob: 6c5502390d2a92ae433047461bca3c52d604477f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD: src/tools/build/Makefile,v 1.12.20.1 2009/04/15 03:14:26 kensmith Exp $
.PATH: ${.CURDIR}/../../include
LIB= egacy
SRCS=
INCSGROUPS= INCS
INCS=
BOOTSTRAPPING?= 0
# usr.bin/gencat needs <nl_types.h>.
.if ${BOOTSTRAPPING} < 600017
INCS+= nl_types.h
.endif
.if empty(SRCS)
SRCS= dummy.c
.endif
.if defined(CROSS_BUILD_TESTING)
SUBDIR= cross-build
.endif
.include <bsd.lib.mk>
|