Home | History | Annotate | Line # | Download | only in conf
Makefile revision 1.2
      1  1.2  is #	$NetBSD: Makefile,v 1.2 1999/02/15 19:16:41 is Exp $
      2  1.1  is 
      3  1.1  is #
      4  1.1  is # Use this file to regenerate AMIGA and DRACO out of the GENERIC template.
      5  1.1  is #
      6  1.1  is 
      7  1.1  is all: AMIGA DRACO
      8  1.1  is 
      9  1.1  is AMIGA: 
     10  1.2  is 	@echo -n '# '$$ > $@
     11  1.2  is 	@echo NetBSD$$ >> $@
     12  1.2  is 	@echo '#' >> $@
     13  1.2  is 	@echo '# This file was automatically created. Changes will be' >> $@
     14  1.1  is 	@echo '# lost when running make in this directory.' >> $@
     15  1.1  is 	@echo '#' >> $@
     16  1.1  is 	@echo '# Created from: ' >> $@
     17  1.1  is 	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
     18  1.1  is 		cpp -P -DAMIGA_CONFIGURATION |\
     19  1.1  is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     20  1.1  is 
     21  1.1  is DRACO:
     22  1.2  is 	@echo -n '# '$$ > $@
     23  1.2  is 	@echo NetBSD$$ >> $@
     24  1.2  is 	@echo '#' >> $@
     25  1.2  is 	@echo '# This file was automatically created. Changes will be' >> $@
     26  1.1  is 	@echo '# lost when running make in this directory.' >> $@
     27  1.1  is 	@echo '#' >> $@
     28  1.1  is 	@echo '# Created from: ' >> $@
     29  1.1  is 	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
     30  1.1  is 		cpp -P -DDRACO_CONFIGURATION |\
     31  1.1  is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     32  1.1  is 
     33  1.1  is AMIGA DRACO: GENERIC Makefile
     34