mirror of
https://github.com/wfjm/w11.git
synced 2026-02-09 01:51:12 +00:00
mcodes: add Makefiles, include in Travis
This commit is contained in:
6
tools/mcode/.gitignore
vendored
Normal file
6
tools/mcode/.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
*.cof
|
||||
*.lda
|
||||
*.lst
|
||||
*.md.html
|
||||
rlink_cext_*
|
||||
sysmon_stim
|
||||
19
tools/mcode/Makefile
Normal file
19
tools/mcode/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# 2019-05-07 1147 1.0 Initial version
|
||||
#
|
||||
DIRS = dl11
|
||||
DIRS += lp11
|
||||
DIRS += m9312
|
||||
DIRS += pc11
|
||||
DIRS += sys
|
||||
#
|
||||
TARGETS = all alllda allcof alllst clean
|
||||
#
|
||||
.PHONY: $(TARGETS) $(DIRS)
|
||||
#
|
||||
$(TARGETS): $(DIRS)
|
||||
#
|
||||
$(DIRS):
|
||||
$(MAKE) -C $@ $(MAKECMDGOALS)
|
||||
8
tools/mcode/dl11/Makefile
Normal file
8
tools/mcode/dl11/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# Date Rev Version Comment
|
||||
# 2019-05-07 1147 1.0 Initial version
|
||||
#---
|
||||
#
|
||||
include ${RETROBASE}/tools/make/generic_asm11_def.mk
|
||||
8
tools/mcode/lp11/Makefile
Normal file
8
tools/mcode/lp11/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# Date Rev Version Comment
|
||||
# 2019-05-07 1147 1.0 Initial version
|
||||
#---
|
||||
#
|
||||
include ${RETROBASE}/tools/make/generic_asm11_def.mk
|
||||
8
tools/mcode/m9312/Makefile
Normal file
8
tools/mcode/m9312/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# Date Rev Version Comment
|
||||
# 2019-05-07 1147 1.0 Initial version
|
||||
#---
|
||||
#
|
||||
include ${RETROBASE}/tools/make/generic_asm11_def.mk
|
||||
@@ -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
|
||||
|
||||
8
tools/mcode/sys/Makefile
Normal file
8
tools/mcode/sys/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
# $Id: Makefile 1147 2019-05-11 07:08:40Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# Date Rev Version Comment
|
||||
# 2019-05-07 1147 1.0 Initial version
|
||||
#---
|
||||
#
|
||||
include ${RETROBASE}/tools/make/generic_asm11_def.mk
|
||||
Reference in New Issue
Block a user