Browse Source

fixed some build problems

pull/80/head
Curt Mayer 6 years ago
parent
commit
ad35748d5c
  1. 6
      Source/Apps/FAT/Makefile
  2. 10
      Source/Apps/FDU/Makefile
  3. 2
      Source/Apps/RTC.asm
  4. 9
      Source/Apps/Tune/Makefile
  5. 12
      Source/Apps/XM/Makefile
  6. 2
      Tools/Makefile.inc

6
Source/Apps/FAT/Makefile

@ -0,0 +1,6 @@
OBJECTS = FAT.COM
NODELETE = FAT.COM
DEST = ../../../Binary/Apps
TOOLS=../../../Tools
include $(TOOLS)/Makefile.inc

10
Source/Apps/FDU/Makefile

@ -0,0 +1,10 @@
OBJECTS = FDU.COM
DOCS = FDU.TXT
DEST = ../../../Binary/Apps
DOCDEST = ../../../Doc
TOOLS = ../../../Tools
include $(TOOLS)/Makefile.inc
%.COM: %.asm
$(TASM) $< $@

2
Source/Apps/RTC.asm

@ -73,7 +73,7 @@ LOOP:
; uses BC
;
; based on following algorithm:
:
;
; const
; hextab : string = ('0','1','2','3','4','5','6','7','8',
; '9','A','B','C','D','E','F');

9
Source/Apps/Tune/Makefile

@ -0,0 +1,9 @@
SUBDIRS = Tunes
OBJECTS = Tune.com
DEST = ../../../Binary/Apps
TOOLS = ../../../Tools
include $(TOOLS)/Makefile.inc
Tune.com: Tune.asm
$(TASM) Tune.asm Tune.com

12
Source/Apps/XM/Makefile

@ -0,0 +1,12 @@
OBJECTS = xm.com xmuf.com
DEST = ../../../Binary/Apps
TOOLS = ../../../Tools
OTHERS = *.hex
include $(TOOLS)/Makefile.inc
xm.com: xmdm125.HEX xmhb.HEX
$(ZXCC) $(CPM)/MLOAD25 XM=xmdm125,xmhb
xmuf.com: xmdm125.HEX xmuf.HEX
$(ZXCC) $(CPM)/MLOAD25 XMUF=xmdm125,xmuf

2
Tools/Makefile.inc

@ -102,7 +102,7 @@ all:: $(OBJECTS)
done
clean::
-rm -f $$($(CASEFN) *.sym *.lst *.prn $(OTHERS) $(OBJECTS))
-rm -f $$($(CASEFN) *.sym *.lst *.prn $(OTHERS) $(filter-out $(NODELETE),$(OBJECTS)))
@for dir in $(SUBDIRS) ; do \
( echo "cleaning in `pwd`/$$dir" ; cd "$$dir" ; make clean ) ; \
done

Loading…
Cancel
Save