mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
native and foreign architectures and comparing products).
They eliminate most of the differences caused by different
object directory paths, timestamping, and identification.
(Note WORLDTMP was renamed to ${OBJTREE}${.CURDIR}/tmp.)
30 lines
429 B
Makefile
30 lines
429 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
|
|
|
|
.if defined(CROSS_BUILD_TESTING)
|
|
SUBDIR= cross-build
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|