d974db0ada
This branch was a major cleanup and rototill of many of the various OEA cpu based PPC ports that focused on sharing as much code as possible between the various ports to eliminate near-identical copies of files in every tree. Additionally there is a new PIC system that unifies the interface to interrupt code for all different OEA ppc arches. The work for this branch was done by a variety of people, too long to list here. TODO: bebox still needs work to complete the transition to -renovation. ofppc still needs a bunch of work, which I will be looking at. ev64260 still needs to be renovated amigappc was not attempted. NOTES: pmppc was removed as an arch, and moved to a evbppc target.
27 lines
727 B
Makefile
27 lines
727 B
Makefile
# $NetBSD: Makefile,v 1.13 2007/10/17 19:53:14 garbled Exp $
|
|
|
|
#
|
|
# Use this file to regenerate DRACO, GENERIC, INSTALL
|
|
# out of the GENERIC.in template.
|
|
#
|
|
|
|
all: DRACO GENERIC INSTALL
|
|
|
|
DRACO: __generate_config
|
|
|
|
GENERIC: __generate_config
|
|
|
|
INSTALL: __generate_config
|
|
|
|
__generate_config: .USE GENERIC.in Makefile
|
|
@echo Generating ${.TARGET}...
|
|
@echo -n '# '$$ > ${.TARGET}
|
|
@echo NetBSD$$ >> ${.TARGET}
|
|
@echo '#' >> ${.TARGET}
|
|
@echo '# This file was automatically created.' >> ${.TARGET}
|
|
@echo '# Changes will be lost when make is run in this directory.' >> ${.TARGET}
|
|
@echo '#' >> ${.TARGET}
|
|
@echo -n '# Created from: ' >> ${.TARGET}
|
|
sed -e '1s/$$NetBSD/NetBSD/' GENERIC.in |\
|
|
m4 -P -DM4_Target=${.TARGET} >> ${.TARGET}
|