freebsd-dev/tools/build/Makefile

27 lines
367 B
Makefile
Raw Normal View History

# $FreeBSD$
.PATH: ${.CURDIR}/../../include
LIB= egacy
SRCS=
INCSGROUPS= INCS
INCS=
BOOTSTRAPPING?= 0
# usr.bin/mklocale needs <runefile.h>.
.if !exists(/usr/include/runefile.h)
INCS+= runefile.h
.endif
2005-02-27 19:13:41 +00:00
# usr.bin/gencat needs <nl_types.h>.
.if ${BOOTSTRAPPING} < 600017
INCS+= nl_types.h
.endif
.if empty(SRCS)
SRCS= dummy.c
.endif
.include <bsd.lib.mk>