Home | History | Annotate | Line # | Download | only in conf
Makefile revision 1.5
      1  1.5    is #	$NetBSD: Makefile,v 1.5 2000/04/01 20:21:27 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.5    is all: AMIGA DRACO INSTALL
      8  1.1    is 
      9  1.4  tron AMIGA: GENERIC
     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.4  tron 		cpp -undef -P -DAMIGA_CONFIGURATION 2>/dev/null |\
     19  1.1    is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     20  1.1    is 
     21  1.4  tron DRACO: GENERIC
     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.4  tron 		cpp -undef -P -DDRACO_CONFIGURATION 2>/dev/null |\
     31  1.1    is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     32  1.1    is 
     33  1.5    is INSTALL: GENERIC
     34  1.5    is 	@echo -n '# '$$ > $@
     35  1.5    is 	@echo NetBSD$$ >> $@
     36  1.5    is 	@echo '#' >> $@
     37  1.5    is 	@echo '# This file was automatically created. Changes will be' >> $@
     38  1.5    is 	@echo '# lost when running make in this directory.' >> $@
     39  1.5    is 	@echo '#' >> $@
     40  1.5    is 	@echo '# Created from: ' >> $@
     41  1.5    is 	@sed -e '1s/NetBSD/ NetBSD/' GENERIC |\
     42  1.5    is 		cpp -undef -P \
     43  1.5    is 			-DAMIGA_CONFIGURATION -DDRACO_CONFIGURATION \
     44  1.5    is 			-DINSTALL_CONFIGURATION 2>/dev/null |\
     45  1.5    is 		awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@
     46  1.5    is 
     47  1.5    is AMIGA DRACO INSTALL: GENERIC Makefile
     48