The Makefile for building the crunched image is the same

for almost all images, so let's have a centralized copy.

Approved-By: jordan
This commit is contained in:
Luigi Rizzo 2000-02-08 08:27:55 +00:00
parent f908e29f8d
commit d13031514e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=57039

View file

@ -0,0 +1,44 @@
#
# $FreeBSD$
#
SRC?=/usr/src
CRUNCHFLAGS+= -DNOPAM -DRELEASE_CRUNCH -DNOSECURE -DNOCRYPT
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 /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
#mkdir -p /mnt/usr/local/share/snmp/mibs
#cp ../../net/crunch1/mibs/*.txt /mnt/usr/local/share/snmp/mibs/
.include <bsd.prog.mk>