mirror of
https://github.com/wfjm/w11.git
synced 2026-01-24 20:01:19 +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
32 lines
610 B
Makefile
32 lines
610 B
Makefile
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2013-03-22 496 1.0 Initial version
|
|
#---
|
|
#
|
|
MAC_all = $(wildcard *.mac)
|
|
LSTERR_all = $(MAC_all:.mac=.lsterr)
|
|
LDART_all = $(MAC_all:.mac=.ldart)
|
|
LSTRT_all = $(MAC_all:.mac=.lstrt)
|
|
#
|
|
include $(RETROBASE)/tools/make/generic_asm11.mk
|
|
#
|
|
.PHONY : def alllst allrt allexp clean cleanrt
|
|
#
|
|
def : alllst
|
|
#
|
|
alllst : $(LSTERR_all)
|
|
#
|
|
allrt : $(LSTRT_all)
|
|
#
|
|
allexp : $(LSTERR_all)
|
|
@ asm-11_expect $^
|
|
#
|
|
clean :
|
|
@ rm -f $(LSTERR_all)
|
|
@ echo "Listing files removed"
|
|
|
|
cleanrt :
|
|
@ rm -f $(LDART_all) $(LSTRT_all)
|
|
@ echo "RT-11 generated files removed"
|