1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-28 09:37:47 +00:00
Files
wfjm.w11/tools/asm-11/tests-err/Makefile
wfjm 3b033ebfa8 major asm-11 update
- tools/bin
  - asm-11
    - add .if, .if(f|t|tf), .endc, .rept, .endr, .mexit directives
    - add .error, .print, .mcall, .mdelete directives
    - add .narg, .nchr, .ntype directives
    - rewrite macro definition and call argument parsing & handling
    - add -L option (to set .mcall pathlist)
    - add auto-generated ...top label
    - add flag (MRmrd) column in output format
  - asm-11_expect
    - add simple substitution mechanism (for macro testing)
    - handle new flag column in output format
- tools/asm-11
  - tests(-err): many tests added
  - tests(-err)/Makefile: distclean target added
  - mlib: macro library, accessed by .mcall
2023-01-26 16:13:36 +01:00

39 lines
904 B
Makefile

# $Id: Makefile 1356 2023-01-26 15:10:23Z mueller $
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright 2013-2023 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
#
# Revision History:
# Date Rev Version Comment
# 2023-01-26 1356 1.1.1 add distclean
# 2018-11-03 1065 1.1 sort file list
# 2013-03-22 496 1.0 Initial version
#---
#
MAC_all = $(sort $(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 distclean
#
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"
distclean : clean cleanrt