freebsd-dev/sys/Makefile
John Birrell 756985ab45 Test for the existance of ${MACHINE}/boot before trying to build it.
The PC98 stuff in this makefile should be removed and that system
should build with MACHINE=pc98 and MACHINE_ARCH=i386.
1998-02-20 07:37:08 +00:00

12 lines
328 B
Makefile

# $Id: Makefile,v 1.8 1997/07/13 07:36:20 jkh Exp $
.if defined(MACHINE_PC98) && ${MACHINE_PC98} == "yes"
SUBDIR= pc98/boot
.elif exists(${MACHINE}/boot)
SUBDIR= ${MACHINE}/boot
.endif
HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
.include <bsd.subdir.mk>