5f7e80a834
NetBSD/emips port runs on Xilinx and Beecube FPGA systems and the Giano system simulator. eMIPS is a platform developed at Microsoft Research for researching reconfigurable computing. eMIPS allows dynamic loading and scheduling of application-specific circuits for the purpose of accelerating computations based on the current workload. NetBSD eMIPS support for NetBSD 4.x was written at Microsoft Research by Alessandro Forin and Neil Pittman. Microsoft Corporation has donated full copyright to The NetBSD Foundation. Platform support for eMIPS is the first part of Microsoft's contribution. The second part includes the hardware accelerator framework and will be proposed on tech-kern soon.
33 lines
823 B
Makefile
33 lines
823 B
Makefile
# $NetBSD: Makefile,v 1.1 2011/01/26 01:18:49 pooka Exp $
|
|
|
|
# Makefile for emips tags file and boot blocks
|
|
|
|
# Find where mips source files are for inclusion in tags
|
|
.include <../mips/Makefile.inc>
|
|
|
|
TEMIPS= ../emips/tags
|
|
SEMIPS= ../emips/emips/*.[ch] ../emips/include/*.h \
|
|
../emips/dev/*.[ch] ../emips/tc/*.[ch]
|
|
AEMIPS= ../emips/emips/*.S
|
|
|
|
# Directories in which to place tags links
|
|
DEMIPS= dev tc include
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-ctags -wdtf ${TEMIPS} ${SEMIPS} ${SMIPS} ${COMM}
|
|
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AEMIPS} ${AMIPS} | \
|
|
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
>> ${TEMIPS}
|
|
sort -o ${TEMIPS} ${TEMIPS}
|
|
|
|
links:
|
|
-for i in ${DEMIPS}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
|
SUBDIR= compile include stand
|
|
|
|
.include <bsd.subdir.mk>
|