mirror of
https://github.com/KastnerRG/riffa.git
synced 2025-01-30 23:02:54 +08:00
The majority of this work can be summarized as: Makefiles have been added to generate all of the boards, boards for each vendor, board, and projects for each board. To make things cleaner I renamed a few of the Xilinx projects, and may rename the latera projects for consistency. I removed the de5_qsys directory, and moved all projects into the de5 directory, but those projects have a Q between DE5 and the PCIe specifications, ie DE5QGen... (haven't updated the documentation) Added c4dev board (untested) Apologies to those of you who recently switched onto the DEVEL branch.
19 lines
426 B
Makefile
19 lines
426 B
Makefile
BOARD=de5
|
|
BOARD_PROJECTS:= DE5QGen1x8If64 DE5QGen2x8If128 DE5QGen3x4If128 DE5Gen1x8If64 DE5Gen2x8If128 DE5Gen3x4If128
|
|
BOARD_PATH:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
BOARD_HDL:= $(BOARD_PATH)/riffa_wrapper_$(BOARD).v
|
|
SUBDIRS = $(BOARD_PROJECTS)
|
|
|
|
all: $(SUBDIRS)
|
|
|
|
$(SUBDIRS)::
|
|
$(MAKE) -C $@ $(MAKECMDGOALS) BOARD_HDL=$(BOARD_HDL) BOARD=$(BOARD)
|
|
|
|
.PHONY:clean $(SUBDIRS)
|
|
clean: $(SUBDIRS)
|
|
rm -rf *~
|
|
|
|
|
|
|
|
|