mirror of
https://github.com/wfjm/w11.git
synced 2026-02-22 07:28:20 +00:00
- C++ and Tcl based backend server: many support classes for interfacing to w11 system designs, and the associated Tcl bindings. - add 'asm-11', a simple, Macro-11 syntax subset combatible, assembler. - use now doxygen 1.8.3.1, generate c++,tcl, and vhdl source docs
29 lines
572 B
Makefile
29 lines
572 B
Makefile
# $Id: Makefile 477 2013-01-27 14:07:10Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2011-10-14 416 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
BIT_all = $(VBOM_all:.vbom=.bit)
|
|
#
|
|
include $(RETROBASE)/rtl/make/xflow_default_s3board.mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(BIT_all)
|
|
#
|
|
clean : ise_clean
|
|
rm -f $(VBOM_all:.vbom=.ucf)
|
|
#
|
|
#----
|
|
#
|
|
include $(RETROBASE)/rtl/make/generic_xflow.mk
|
|
include $(RETROBASE)/rtl/make/generic_ghdl.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
include $(VBOM_all:.vbom=.dep_ghdl)
|
|
endif
|
|
#
|