mirror of https://github.com/zxdos/zxuno.git
Merge pull request #80 from ivan-tat/master
firmware/scroll: added notice in `music.stc.license` file
This commit is contained in:
commit
b6dd002091
|
|
@ -15,7 +15,14 @@ include ../../sdk/common.mk
|
|||
|
||||
FUENTEABIN = tools/build/FuenteABin$(EXESUFFIX)
|
||||
AS = sjasmplus
|
||||
AFLAGS = --nobanner -I../../sdk/include
|
||||
ifeq ($(USE_SJASMPLUS_VERSION),sjasmplus)
|
||||
AFLAGS = --nobanner
|
||||
else ifeq ($(USE_SJASMPLUS_VERSION),z00m128)
|
||||
AFLAGS = --nologo
|
||||
else
|
||||
AFLAGS =
|
||||
endif
|
||||
AFLAGS += -I../../sdk/include
|
||||
|
||||
.PHONY: all
|
||||
all: scroll.tap
|
||||
|
|
@ -23,10 +30,12 @@ all: scroll.tap
|
|||
scroll.tap: scrolldesc.bin
|
||||
GenTape $@ basic "SCROLL" 0 $<
|
||||
|
||||
scrolldesc.bin: scrolldesc.asm scroll.bin scroll.bin.zx7b
|
||||
echo ' define filesize $(shell stat -c %s scroll.bin)' >define.asm
|
||||
scrolldesc.bin: scrolldesc.asm define.asm scroll.bin.zx7b
|
||||
$(AS) $(AFLAGS) --raw=$@ $<
|
||||
|
||||
define.asm: scroll.bin
|
||||
echo ' define filesize $(shell stat -c %s $<)' >$@
|
||||
|
||||
scroll.bin.zx7b: scroll.bin
|
||||
zx7b $< $@
|
||||
|
||||
|
|
@ -56,7 +65,8 @@ install:;
|
|||
uninstall:;
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
clean: | tools
|
||||
$(MAKE) -w -C $| $@
|
||||
rm -f music.bin fuente6x8.bin fondo.rcs scroll.bin scroll.bin.zx7b define.asm scrolldesc.bin scroll.tap
|
||||
|
||||
.PHONY: distclean
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ SPDX-FileChecksum: SHA1: c45309ee13cc7cb0cbb7becb2eda9ecc4d905788
|
|||
|
||||
SPDX-FileCopyrightText: Copyright (C) 2016 Michal B. (a.k.a Yerzmyey)
|
||||
|
||||
SPDX-FileNotice: Exclusive track for ZX-Uno project.
|
||||
|
||||
SPDX-License-Identifier: CC-BY-SA-4.0
|
||||
|
||||
SPDX-FileComment: https://zxart.ee/eng/authors/y/yerzmyey/
|
||||
|
|
|
|||
Loading…
Reference in New Issue