mirror of
https://github.com/wfjm/w11.git
synced 2026-05-05 07:34:43 +00:00
pc11_buf: buffered PC11; add lp11,pc11 mcodes
This commit is contained in:
31
tools/mcode/pc11/Makefile
Normal file
31
tools/mcode/pc11/Makefile
Normal file
@@ -0,0 +1,31 @@
|
||||
# $Id: Makefile 1135 2019-04-23 12:56:23Z mueller $
|
||||
#
|
||||
# Revision History:
|
||||
# Date Rev Version Comment
|
||||
# 2013-03-22 496 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"
|
||||
Reference in New Issue
Block a user