1
0
mirror of https://github.com/wfjm/w11.git synced 2026-05-01 05:59:46 +00:00

mcodes: add Makefiles, include in Travis

This commit is contained in:
wfjm
2019-05-12 08:48:25 +02:00
parent 4ff0b57a7a
commit a211470cc5
9 changed files with 92 additions and 26 deletions

View File

@@ -1,31 +1,8 @@
# $Id: Makefile 1135 2019-04-23 12:56:23Z mueller $
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2013-03-22 496 1.0 Initial version
# 2019-05-07 1147 1.0 Initial version
#---
#
MAC_all = $(wildcard *.mac)
LDA_all = $(MAC_all:.mac=.lda)
COF_all = $(MAC_all:.mac=.cof)
LST_all = $(MAC_all:.mac=.lst)
#
include ${RETROBASE}/tools/make/generic_asm11.mk
#
.PHONY : alllda allcof alllst clean
#
def : alllda
#
alllda : $(LDA_all)
#
allcof : $(COF_all)
#
alllst : $(LST_all)
#
clean :
@ rm -f $(LDA_all)
@ echo "Object files removed"
@ rm -f $(COF_all)
@ echo "Compound files removed"
@ rm -f $(LST_all)
@ echo "Listing files removed"
include ${RETROBASE}/tools/make/generic_asm11_def.mk