mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
This allows the subdirs that do more work to run in parallel Reviewed by: jrtc27 Differential Revision: https://reviews.freebsd.org/D42947
13 lines
292 B
Makefile
13 lines
292 B
Makefile
OSNAME?= FreeBSD
|
|
GENHDRS= opt_osname.h
|
|
SRCS+= ${GENHDRS}
|
|
CLEANFILES+= ${GENHDRS}
|
|
|
|
opt_osname.h: ${META_NOPHONY}
|
|
@if ! grep -q "^#define OSNAME \"${OSNAME}\"$"" ${.TARGET} 2> /dev/null; then \
|
|
echo "#define OSNAME \"${OSNAME}\"" > ${.TARGET}; \
|
|
fi
|
|
|
|
MK_STAGING= no
|
|
|
|
.include <bsd.prog.mk>
|