756985ab45
The PC98 stuff in this makefile should be removed and that system should build with MACHINE=pc98 and MACHINE_ARCH=i386.
12 lines
328 B
Makefile
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>
|