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.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.30 2007/10/17 19:54:41 garbled Exp $
|
|
|
|
# Makefile for i386 tags file and boot blocks
|
|
|
|
TI386= ${SYSDIR}/arch/i386/tags
|
|
SI386= ${SYSDIR}/arch/i386/i386/*.[ch] ${SYSDIR}/arch/i386/include/*.h \
|
|
${SYSDIR}/arch/i386/eisa/*.[ch] ${SYSDIR}/arch/i386/isa/*.[ch] \
|
|
${SYSDIR}/arch/i386/pci/*.[ch] \
|
|
${SYSDIR}/contrib/dev/ath/*.[ch] \
|
|
${SYSDIR}/contrib/dev/ath/netbsd/*.[ch] \
|
|
${SYSDIR}/contrib/dev/ath/public/*.[ch]
|
|
SI386+= ${SYSDIR}/arch/x86/x86/*.[ch] ${SYSDIR}/arch/x86/include/*.h \
|
|
${SYSDIR}/arch/x86/isa/*.[ch] \
|
|
${SYSDIR}/arch/x86/pci/*.[ch]
|
|
AI386= ${SYSDIR}/arch/i386/i386/*.[sS]
|
|
|
|
# Directories in which to place tags links
|
|
DI386= i386 eisa isa include pci
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-rm -f ${TI386}
|
|
-echo ${SI386} | xargs ctags -wadtf ${TI386}
|
|
-${FINDCOMM} | xargs ctags -wadtf ${TI386}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TI386}
|
|
sort -o ${TI386} ${TI386}
|
|
|
|
links:
|
|
-for i in ${DI386}; do \
|
|
(cd $$i && rm -f tags; ln -s ../tags tags); done
|
|
|
|
|
|
SUBDIR= compile include stand ../x86/include
|
|
|
|
.include <bsd.subdir.mk>
|