228f8c4f8b
Suggested by: phantom
26 lines
326 B
Makefile
26 lines
326 B
Makefile
# $FreeBSD$
|
|
|
|
.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>
|