mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-30 05:04:17 +00:00
18 lines
259 B
Makefile
18 lines
259 B
Makefile
TOOLS=../../tools
|
|
PROJECT=hscnt
|
|
PRG=$(PROJECT).tos
|
|
|
|
all: $(PRG)
|
|
|
|
$(PRG): $(PROJECT).s
|
|
$(TOOLS)/vasm/vasmm68k_mot -o $@ -Ftos -nosym $<
|
|
|
|
clean:
|
|
rm -f $(PRG) *~
|
|
|
|
sttest: $(PRG)
|
|
hatari -d . $(PROG)
|
|
|
|
install: $(PRG)
|
|
mcopy -o -i ./stvidtst.st $(PRG) ::/$(PRG)
|