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.
37 lines
1016 B
Makefile
37 lines
1016 B
Makefile
# $NetBSD: Makefile,v 1.6 2007/10/17 19:54:14 garbled Exp $
|
|
|
|
# Makefile for evbmips tags file and boot blocks
|
|
|
|
# Find where mips source files are for inclusion in tags
|
|
.include <../mips/Makefile.inc>
|
|
|
|
# XXX ! fix this
|
|
TEVBMIPS= ${SYSDIR}/arch/evbmips/tags
|
|
SEVBMIPS= ${SYSDIR}/arch/evbmips/evbmips/*.[ch] \
|
|
${SYSDIR}/arch/evbmips/include/*.h \
|
|
${SYSDIR}/arch/evbmips/isa/*.[ch]
|
|
AEVBMIPS= ${SYSDIR}/arch/evbmips/evbmips/*.S
|
|
|
|
# Directories in which to place tags links
|
|
DEVBMIPS= evbmips include isa pci
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-rm -f ${TEVBMIPS}
|
|
-echo ${SEVBMIPS} ${SMIPS} | xargs ctags -wadtf ${TEVBMIPS}
|
|
-${FINDCOMM} | xargs ctags -wadtf ${TEVBMIPS}
|
|
egrep "^LEAF(.*)|^[AN]LEAF(.*)|^NON_LEAF(.*)" ${AEVBMIPS} ${AMIPS} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TEVBMIPS}
|
|
sort -o ${TEVBMIPS} ${TEVBMIPS}
|
|
|
|
links:
|
|
-for i in ${DEVBMIPS}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
|
SUBDIR= compile include
|
|
|
|
.include <bsd.subdir.mk>
|