68fe5b6f0a
This port of NetBSD is intended to run on MCA-based IBM RS/6000 machines. The port so far has only been tested on a 7006-41T, which is a 601-based RS/6000. The port also contains a limited set of code for the 7012-3XX machines, but support for those is a long way off still. The port builds and generates a working kernel, however, it still lacks bus_dma code for the MCA bus, so at present, only the com ports work, though any other device (such as the printer/keyboard) located on the ioplanar could probably be made to work. Work will continue on this port as I iron out the DMA code. This port was made possible by a generous gonation of hardware by Kevin Bowling, who also provided much of the documentation for the port.
30 lines
722 B
Makefile
30 lines
722 B
Makefile
# $NetBSD: Makefile,v 1.1 2007/12/17 19:09:01 garbled Exp $
|
|
|
|
# Makefile for tags file
|
|
|
|
TRS6000= ../rs6000/tags
|
|
SRS6000= ../rs6000/rs6000/*.[ch] ../rs6000/include/*.h \
|
|
../rs6000/mca/*.[ch] ../rs6000/ioplanar/*.[ch]
|
|
ARS6000= ../rs6000/rs6000/*.[sS]
|
|
|
|
# Directories in which to place tags links
|
|
DRS6000= include
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-ctags -wdtf ${TRS6000} ${SRS6000} ${COMM}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ARS6000} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TRS6000}
|
|
sort -o ${TRS6000} ${TRS6000}
|
|
|
|
links:
|
|
-for i in ${DRS6000}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
|
SUBDIR= compile include stand
|
|
|
|
.include <bsd.subdir.mk>
|