Makefile revision 1.1
11.1Sis# $NetBSD: Makefile,v 1.1 1999/02/04 19:01:37 is Exp $ 21.1Sis 31.1Sis# 41.1Sis# Use this file to regenerate AMIGA and DRACO out of the GENERIC template. 51.1Sis# 61.1Sis 71.1Sisall: AMIGA DRACO 81.1Sis 91.1SisAMIGA: 101.1Sis @echo '# This file was automatically created. Changes will be' > $@ 111.1Sis @echo '# lost when running make in this directory.' >> $@ 121.1Sis @echo '#' >> $@ 131.1Sis @echo '# Created from: ' >> $@ 141.1Sis @sed -e '1s/NetBSD/ NetBSD/' GENERIC |\ 151.1Sis cpp -P -DAMIGA_CONFIGURATION |\ 161.1Sis awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@ 171.1Sis 181.1SisDRACO: 191.1Sis @echo '# This file was automatically created. Changes will be' > $@ 201.1Sis @echo '# lost when running make in this directory.' >> $@ 211.1Sis @echo '#' >> $@ 221.1Sis @echo '# Created from: ' >> $@ 231.1Sis @sed -e '1s/NetBSD/ NetBSD/' GENERIC |\ 241.1Sis cpp -P -DDRACO_CONFIGURATION |\ 251.1Sis awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@ 261.1Sis 271.1SisAMIGA DRACO: GENERIC Makefile 28