mirror of
https://github.com/mist-devel/mist-board.git
synced 2026-01-29 21:01:07 +00:00
17 lines
278 B
Makefile
17 lines
278 B
Makefile
PROJECT=berrscan
|
|
|
|
BASE=m68k-atari-mint-
|
|
GCC=${BASE}gcc
|
|
|
|
berrscan.prg: berrscan.c
|
|
$(GCC) -Os -s -o $@ $<
|
|
|
|
sttest: berrscan.prg
|
|
hatari -d . berrscan.prg
|
|
|
|
install: berrscan.prg
|
|
mcopy -o -i ../test.st berrscan.prg ::/
|
|
|
|
get:
|
|
mcopy -o -i ../test.st ::/berrscan.log ./berrscan.log
|