Makefile revision 1.7
11.7Sis#	$NetBSD: Makefile,v 1.7 2001/01/25 22:34:20 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.5Sisall: AMIGA DRACO INSTALL
81.1Sis
91.4StronAMIGA: GENERIC
101.7Sis	@echo Generating AMIGA...
111.2Sis	@echo -n '# '$$ > $@
121.2Sis	@echo NetBSD$$ >> $@
131.2Sis	@echo '#' >> $@
141.2Sis	@echo '# This file was automatically created. Changes will be' >> $@
151.1Sis	@echo '# lost when running make in this directory.' >> $@
161.1Sis	@echo '#' >> $@
171.7Sis	@echo -n '# Created from: ' >> $@
181.7Sis	@sed -e '1s/$$NetBSD/NetBSD/' GENERIC |\
191.4Stron		cpp -undef -P -DAMIGA_CONFIGURATION 2>/dev/null |\
201.1Sis		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
211.1Sis
221.4StronDRACO: GENERIC
231.7Sis	@echo Generating DRACO...
241.2Sis	@echo -n '# '$$ > $@
251.2Sis	@echo NetBSD$$ >> $@
261.2Sis	@echo '#' >> $@
271.2Sis	@echo '# This file was automatically created. Changes will be' >> $@
281.1Sis	@echo '# lost when running make in this directory.' >> $@
291.1Sis	@echo '#' >> $@
301.7Sis	@echo -n '# Created from: ' >> $@
311.7Sis	@sed -e '1s/$$NetBSD/NetBSD/' GENERIC |\
321.4Stron		cpp -undef -P -DDRACO_CONFIGURATION 2>/dev/null |\
331.1Sis		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
341.1Sis
351.5SisINSTALL: GENERIC
361.7Sis	@echo Generating INSTALL...
371.5Sis	@echo -n '# '$$ > $@
381.5Sis	@echo NetBSD$$ >> $@
391.5Sis	@echo '#' >> $@
401.5Sis	@echo '# This file was automatically created. Changes will be' >> $@
411.5Sis	@echo '# lost when running make in this directory.' >> $@
421.5Sis	@echo '#' >> $@
431.7Sis	@echo -n '# Created from: ' >> $@
441.7Sis	@sed -e '1s/$$NetBSD/NetBSD/' \
451.6Sis		-e 's/	pty	/	pty 2	/' GENERIC |\
461.5Sis		cpp -undef -P \
471.5Sis			-DAMIGA_CONFIGURATION -DDRACO_CONFIGURATION \
481.5Sis			-DINSTALL_CONFIGURATION 2>/dev/null |\
491.5Sis		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
501.5Sis
511.5SisAMIGA DRACO INSTALL: GENERIC Makefile
52