Home | History | Annotate | Line # | Download | only in conf
Makefile revision 1.10
      1  1.10     lukem #	$NetBSD: Makefile,v 1.10 2002/06/18 17:39:39 lukem Exp $
      2   1.1        is 
      3   1.1        is #
      4  1.10     lukem # Use this file to regenerate AMIGA, DRACO, GENERIC, INSTALL and WSCONS
      5  1.10     lukem # out of the GENERIC.in template.
      6   1.1        is #
      7   1.1        is 
      8  1.10     lukem all: AMIGA DRACO GENERIC INSTALL WSCONS
      9   1.1        is 
     10  1.10     lukem AMIGA: __generate_config
     11   1.5        is 
     12  1.10     lukem DRACO: __generate_config
     13  1.10     lukem 
     14  1.10     lukem GENERIC: __generate_config
     15  1.10     lukem 
     16  1.10     lukem INSTALL: __generate_config
     17  1.10     lukem 
     18  1.10     lukem WSCONS: __generate_config
     19   1.9  jandberg 
     20  1.10     lukem __generate_config: .USE GENERIC.in Makefile
     21  1.10     lukem 	@echo Generating ${.TARGET}...
     22  1.10     lukem 	@echo -n '# '$$ > ${.TARGET}
     23  1.10     lukem 	@echo NetBSD$$ >> ${.TARGET}
     24  1.10     lukem 	@echo '#' >> ${.TARGET}
     25  1.10     lukem 	@echo '# This file was automatically created.' >> ${.TARGET}
     26  1.10     lukem 	@echo '# Changes will be lost when make is run in this directory.' >> ${.TARGET}
     27  1.10     lukem 	@echo '#' >> ${.TARGET}
     28  1.10     lukem 	@echo -n '# Created from: ' >> ${.TARGET}
     29  1.10     lukem 	sed -e '1s/$$NetBSD/NetBSD/' GENERIC.in |\
     30  1.10     lukem 		m4 -P -DM4_Target=${.TARGET} >> ${.TARGET}
     31