8945135e1f
OK'ed by: phantom
27 lines
367 B
Makefile
27 lines
367 B
Makefile
# $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
|
|
|
|
# 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>
|