Forgot this in previous commit.

This commit is contained in:
leo 2001-04-05 12:22:10 +00:00
parent 08beeb78a7
commit 6b22a0776c
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
#!/bin/sh
# $NetBSD: makeconf,v 1.1 2001/04/05 12:22:10 leo Exp $
emit_file() {
echo "Generating $1"
echo '#
# $NetBSD: makeconf,v 1.1 2001/04/05 12:22:10 leo Exp $
#
# This file was automatically created. Changes will be
# lost when running makeconf in this directory.
#
# Created from: ' > $1
grep -h '$NetBSD' $2 GENERIC | sed -e 's/\$NetBSD/ NetBSD/' >> $1
cpp -undef -P $3 2>/dev/null < $2 |
sed -e '/\$NetBSD:/d' |
awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $1
}
emit_file BOOT FALCON.in "-DINSTALL_KERNEL -DTT030_KERNEL -DFALCON_KERNEL"
emit_file BOOTX FALCON.in \
"-DINSTALL_KERNEL -DINSTALLX_KERNEL -DTT030_KERNEL -DFALCON_KERNEL"
emit_file ATARITT ATARITT.in "-DTT030_KERNEL"
emit_file FALCON FALCON.in "-DFALCON_KERNEL"
emit_file HADES HADES.in "-DHADES_KERNEL"