Makefile revision 1.2
11.2Sis#	$NetBSD: Makefile,v 1.2 1999/02/15 19:16:41 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.2Sis	@echo -n '# '$$ > $@
111.2Sis	@echo NetBSD$$ >> $@
121.2Sis	@echo '#' >> $@
131.2Sis	@echo '# This file was automatically created. Changes will be' >> $@
141.1Sis	@echo '# lost when running make in this directory.' >> $@
151.1Sis	@echo '#' >> $@
161.1Sis	@echo '# Created from: ' >> $@
171.1Sis	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
181.1Sis		cpp -P -DAMIGA_CONFIGURATION |\
191.1Sis		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
201.1Sis
211.1SisDRACO:
221.2Sis	@echo -n '# '$$ > $@
231.2Sis	@echo NetBSD$$ >> $@
241.2Sis	@echo '#' >> $@
251.2Sis	@echo '# This file was automatically created. Changes will be' >> $@
261.1Sis	@echo '# lost when running make in this directory.' >> $@
271.1Sis	@echo '#' >> $@
281.1Sis	@echo '# Created from: ' >> $@
291.1Sis	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
301.1Sis		cpp -P -DDRACO_CONFIGURATION |\
311.1Sis		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
321.1Sis
331.1SisAMIGA DRACO: GENERIC Makefile
34