mirror of
https://github.com/wfjm/w11.git
synced 2026-01-18 17:37:09 +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
27 lines
470 B
Makefile
27 lines
470 B
Makefile
# $Id: Makefile 477 2013-01-27 14:07:10Z mueller $
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2011-08-13 405 1.1 use includes from rtl/make
|
|
# 2007-11-26 98 1.0 Initial version
|
|
#
|
|
EXE_all = gen_crc8_tbl gen_crc8_tbl_check
|
|
#
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(EXE_all)
|
|
#
|
|
clean : ghdl_clean
|
|
#
|
|
#-----
|
|
#
|
|
include $(RETROBASE)/rtl/make/generic_ghdl.mk
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_ghdl)
|
|
endif
|
|
#
|