mirror of
https://github.com/wfjm/w11.git
synced 2026-02-01 14:42:47 +00:00
- re-organized handling of board and derived clocks in test benches
- added message filter definitions for some designs (.mfset files)
- added Cypress EZ-USB FX2 controller (USB interface)
- added firmware for EZ-USB FX2 supporting jtag access and data transfer
- FPGA configure over USB now supported directly in make build flow
- added test systems for USB testing and rlink over USB verification
- no functional change of w11a CPU core or any pre-existing test systems
- Note: Carefully read the disclaimer about usage of USB VID/PID numbers
in the file README_USB-VID-PID.txt. You'll be responsible for any
misuse of the defaults provided with the project sources !!
25 lines
474 B
Makefile
25 lines
474 B
Makefile
# $Id: Makefile 405 2011-08-14 08:16:28Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2011-08-13 405 1.1 use includes from rtl/make
|
|
# 2010-05-23 293 1.0 Initial version (cloned..)
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
ISE_PATH = xc3s1200e-fg320-4
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(NGC_all)
|
|
#
|
|
clean : ise_clean
|
|
#
|
|
#----
|
|
#
|
|
include $(RETROBASE)/rtl/make/generic_xflow.mk
|
|
#
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
#
|