223b633217
. Bring PicoBSD up to date with -CURRENT reality. . Make PicoBSD smart and not spam /dev/vn0 and /mnt. Now it uses the first unused vn device and creates a temporary mountpoint in /tmp. . Miscellaneous build cleanups and optimizations. Unfortunately the bridge, isp, and router floppies are too big and need the axe treatment. The install floppy needs updating to -CURRENT. Dial and net build and (appear to) run OK. I will be adressing these in the near future (unless someone beats me to it :-) ). PR: misc/17737 Submitted by: Omachonu Ogali <oogali@intranova.net>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
SRC?=/usr/src
|
|
CRUNCHFLAGS+= -DNOPAM -DRELEASE_CRUNCH -DNOSECURE -DNOCRYPT -DNONETGRAPH -DNOIPSEC
|
|
|
|
all: crunch
|
|
|
|
crunch:
|
|
@cat crunch.conf|sed -e "s@/usr/src@${SRC}@" >crunch1.conf
|
|
@( if [ -f crunch.inc ] ; then \
|
|
crunchgen -h ./crunch.inc ./crunch1.conf ; \
|
|
else \
|
|
crunchgen -h ../../build/crunch.inc ./crunch1.conf ; \
|
|
fi )
|
|
@${MAKE} -f crunch1.mk $(CRUNCHFLAGS) all \
|
|
"CFLAGS=${CFLAGS} ${CRUNCHFLAGS}" #2>&1 >/dev/null
|
|
strip --remove-section=.note --remove-section=.comment crunch1
|
|
|
|
|
|
clean:
|
|
rm -f *.o *.stub *.lo *_stub.c *.mk \
|
|
crunch.cache \
|
|
crunch.mk \
|
|
crunch.c \
|
|
crunch1* \
|
|
crunch \
|
|
.tmp_* \
|
|
*.gz
|
|
|
|
install:
|
|
cp crunch1 ${MFS_MOUNTPOINT}/stand/crunch
|
|
chmod 555 ${MFS_MOUNTPOINT}/stand/crunch
|
|
for i in `crunchgen -l crunch1.conf` ; \
|
|
do \
|
|
ln ${MFS_MOUNTPOINT}/stand/crunch ${MFS_MOUNTPOINT}/stand/$${i}; \
|
|
done
|
|
rm ${MFS_MOUNTPOINT}/stand/crunch
|
|
# Install the MIB files
|
|
#mkdir -p ${MFS_MOUNTPOINT}/usr/local/share/snmp/mibs
|
|
#cp ../../net/crunch1/mibs/*.txt ${MFS_MOUNTPOINT}/usr/local/share/snmp/mibs/
|
|
|
|
|
|
.include <bsd.prog.mk>
|