4204bf87ea
The PicoBSD version is now 0.42.
22 lines
484 B
Makefile
22 lines
484 B
Makefile
# $Id: Makefile,v 1.2 1998/09/29 12:12:47 abial Exp $
|
|
#
|
|
|
|
SRC?=/usr/src
|
|
CONF?=$(SRC)/sys/i386/conf
|
|
|
|
CONFFILE=PICOBSD${suffix}.${SIZE}
|
|
COMPILE=$(SRC)/sys/compile/$(CONFFILE)
|
|
KERNFILE=$(COMPILE)/kernel
|
|
|
|
all: $(KERNFILE)
|
|
|
|
$(KERNFILE): PICOBSD
|
|
cat PICOBSD | grep -v "MFS_ROOT" > ${CONF}/${CONFFILE}
|
|
echo "options MFS_ROOT" >> ${CONF}/${CONFFILE}
|
|
echo "options MFS_ROOT_SIZE=${SIZE}" >> ${CONF}/${CONFFILE}
|
|
(cd ${CONF}; \
|
|
config ${CONFFILE}; \
|
|
cd ${COMPILE}; \
|
|
make depend && make)
|
|
|