Home | History | Annotate | Line # | Download | only in conf
Makefile revision 1.1
      1  1.1  is #	$NetBSD: Makefile,v 1.1 1999/02/04 19:01:37 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.1  is 	@echo '# This file was automatically created. Changes will be' > $@
     11  1.1  is 	@echo '# lost when running make in this directory.' >> $@
     12  1.1  is 	@echo '#' >> $@
     13  1.1  is 	@echo '# Created from: ' >> $@
     14  1.1  is 	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
     15  1.1  is 		cpp -P -DAMIGA_CONFIGURATION |\
     16  1.1  is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     17  1.1  is 
     18  1.1  is DRACO:
     19  1.1  is 	@echo '# This file was automatically created. Changes will be' > $@
     20  1.1  is 	@echo '# lost when running make in this directory.' >> $@
     21  1.1  is 	@echo '#' >> $@
     22  1.1  is 	@echo '# Created from: ' >> $@
     23  1.1  is 	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
     24  1.1  is 		cpp -P -DDRACO_CONFIGURATION |\
     25  1.1  is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     26  1.1  is 
     27  1.1  is AMIGA DRACO: GENERIC Makefile
     28