Browse Source

more build and clean fixes

pull/80/head
curt mayer 6 years ago
parent
commit
f9126620c8
  1. 2
      Source/Apps/Tune/Tune.asm
  2. 9
      Source/Apps/Tune/Tunes/Makefile
  3. 2
      Tools/Makefile.inc

2
Source/Apps/Tune/Tune.asm

@ -2336,7 +2336,7 @@ T_PACK .DB $06EC*2/256,$06EC*2
;
; MYMPLAY - Player for MYM-tunes
; MSX-version by Marq/Lieves!Tuore & Fit 30.1.2000
:
;
; 1.2.2000 - Added the disk loader. Thanks to Yzi & Plaque for examples.
; 7.2.2000 - Removed one unpack window -> freed 1.7kB memory
;

9
Source/Apps/Tune/Tunes/Makefile

@ -0,0 +1,9 @@
OBJECTS = *.pt3 *.mym
NODELETE = $(OBJECTS)
DEST = ../../../../Binary/Apps/Tunes
TOOLS = ../../../../Tools
include $(TOOLS)/Makefile.inc
clobber::
-rm -f $(DEST)/*.pt3 $(DEST)/*.mym

2
Tools/Makefile.inc

@ -122,7 +122,7 @@ install:: all
( echo "install in `pwd`/$$dir" ; cd "$$dir" ; make clobber ) ; \
done
clobber: clean
clobber:: clean
-rm -f $$($(CASEFN) $(filter-out $(NODELETE),$(OBJECTS)))
@for dir in $(SUBDIRS) ; do \
( echo "clobbering in `pwd`/$$dir" ; cd "$$dir" ; make clobber ) ; \

Loading…
Cancel
Save