2003-04-05 20:30:30 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
.PATH: ${.CURDIR}/../../include
|
|
|
|
|
2003-04-06 21:46:44 +00:00
|
|
|
LIB= egacy
|
2003-04-05 20:30:30 +00:00
|
|
|
SRCS=
|
|
|
|
INCSGROUPS= INCS
|
|
|
|
INCS=
|
|
|
|
|
|
|
|
BOOTSTRAPPING?= 0
|
|
|
|
|
|
|
|
# Some tools need <sys/endian.h>.
|
2003-04-15 06:51:04 +00:00
|
|
|
.if !exists(/usr/include/sys/endian.h) || ${BOOTSTRAPPING} < 500000
|
2003-04-05 20:30:30 +00:00
|
|
|
INCSGROUPS+= SYSHDRS
|
|
|
|
SYSHDRS= endian.h
|
|
|
|
SYSHDRSDIR= ${INCLUDEDIR}/sys
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# gnu/usr.bin/binutils/ld needs <elf-hints.h>.
|
|
|
|
.if !exists(/usr/include/elf-hints.h)
|
|
|
|
INCS+= elf-hints.h
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# lib/libncurses needs <stdbool.h>.
|
|
|
|
.if !exists(/usr/include/stdbool.h)
|
|
|
|
INCS+= stdbool.h
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# usr.bin/xargs needs <nl_langinfo.h>.
|
|
|
|
.if !exists(/usr/include/langinfo.h)
|
|
|
|
INCS+= langinfo.h
|
|
|
|
.endif
|
|
|
|
|
2003-04-11 17:58:17 +00:00
|
|
|
# Some tools need basename(3).
|
|
|
|
.if !exists(/usr/include/libgen.h)
|
|
|
|
INCS+= libgen.h
|
2003-04-05 20:30:30 +00:00
|
|
|
.PATH: ${.CURDIR}/../../lib/libc/gen
|
|
|
|
SRCS+= basename.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Some tools need {get,set}progname(3).
|
|
|
|
.if ( ${BOOTSTRAPPING} < 440001 || \
|
|
|
|
( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500023 ))
|
|
|
|
SRCS+= progname.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# install(1) needs strtofflags(3).
|
|
|
|
.if ( ${BOOTSTRAPPING} < 400021 || \
|
|
|
|
( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500007 ))
|
|
|
|
.PATH: ${.CURDIR}/../../lib/libc/gen
|
|
|
|
SRCS+= strtofflags.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if empty(SRCS)
|
|
|
|
SRCS= dummy.c
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|