1
0
mirror of https://github.com/wfjm/w11.git synced 2026-05-02 22:33:58 +00:00

- interim release w11a_V0.562 (untagged)

- 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
This commit is contained in:
Walter F.J. Mueller
2013-04-13 17:13:15 +00:00
parent 29d2dc5bef
commit 99de9893cb
439 changed files with 21913 additions and 1980 deletions

21
tools/make/dontincdep.mk Normal file
View File

@@ -0,0 +1,21 @@
# $Id: dontincdep.mk 477 2013-01-27 14:07:10Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2013-01-27 477 1.0 Initial version
#
# DONTINCDEP controls whether dependency files are included. Set it if
# any of the 'clean' type targets is involved
#
ifneq ($(findstring clean, $(MAKECMDGOALS)),)
DONTINCDEP = 1
endif
ifneq ($(findstring cleandep, $(MAKECMDGOALS)),)
DONTINCDEP = 1
endif
ifneq ($(findstring distclean, $(MAKECMDGOALS)),)
DONTINCDEP = 1
endif
ifdef DONTINCDEP
$(info DONTINCDEP set, *.dep files not included)
endif

View File

@@ -0,0 +1,45 @@
# $Id: generic_asm11.mk 503 2013-04-06 19:44:13Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2013-04-06 503 1.0.1 use --hostinc for mac2lda
# 2013-03-22 496 1.0 Initial version
#---
#
ASM11 = asm-11
ASM11EXP = asm-11_expect
MAC2LDA = mac2lda
ifdef ASM11COMMAND
ASM11 = $(ASM11COMMAND)
endif
ifdef ASM11EXPCOMMAND
ASM11EXP = $(ASM11EXPCOMMAND)
endif
#
# Compile rules
#
%.lda : %.mac
$(ASM11) --lda --lst $<
%.cof : %.mac
$(ASM11) --cof --lst $<
#
%.lst : %.mac
$(ASM11) --lst $<
#
%.lsterr : %.mac
$(ASM11) --olst=%.lsterr $< || true
#
%.lstrt %ldart : %.mac
$(MAC2LDA) --hostinc --suff=rt $*
#
# Expect rules
#
%.lstexp : %.lst
$(ASM11EXP) $<
#
%.lstexp : %.lsterr
$(ASM11EXP) $<