freebsd-nq/release/picobsd/install/crunch1/Makefile
Doug White 88e4dbacdb Add a new floppy type, install. This type builds a disk that can
slice, partition, newfs, and install FreeBSD from a tarball on a remote server.
Handy for doing mass-installs for server farms.

Documentation following shortly.
1999-10-08 04:00:21 +00:00

45 lines
1.1 KiB
Makefile

#
# $Id: Makefile,v 1.3 1999/01/19 23:12:50 abial Exp $
#
SRC?=/usr/src
all: crunch
crunch:
# @if [ ! -f /usr/src/usr.bin/passwd/.picobsd.patched ]; then \
# cat passwd.diff|(cd /usr/src/usr.bin/passwd; patch -p0); \
# touch /usr/src/usr.bin/passwd/.picobsd.patched; \
# fi
@cat crunch.conf|sed -e "s@/usr/src@${SRC}@" >crunch1.conf
@crunchgen ./crunch1.conf
@${MAKE} -f crunch1.mk -DNOPAM all \
"CFLAGS=${CFLAGS} -DNOPAM -DRELEASE_CRUNCH -DCRUNCHED_BINARY -DNOSECURE -DNOCRYPT" #2>&1 >/dev/null
clean:
# @if [ -f /usr/src/usr.bin/passwd/.picobsd.patched ]; then \
# cat passwd.diff|(cd /usr/src/usr.bin/passwd; patch -R -p0); \
# rm /usr/src/usr.bin/passwd/.picobsd.patched; \
# fi
rm -f *.o *.stub *.lo *_stub.c *.mk \
crunch.cache \
crunch.mk \
crunch.c \
crunch1* \
crunch \
.tmp_* \
*.gz
install:
cp crunch1 /mnt/stand/crunch
chmod 555 /mnt/stand/crunch
for i in `crunchgen -l crunch1.conf` ; \
do \
ln /mnt/stand/crunch /mnt/stand/$${i}; \
done
rm /mnt/stand/crunch
# Install the MIB files
#cp mibs/*.txt /mnt/usr/local/share/snmp/mibs/
.include <bsd.prog.mk>