mirror of
https://github.com/exoticorn/upkr.git
synced 2026-01-20 19:46:42 +01:00
12 lines
410 B
Makefile
12 lines
410 B
Makefile
all: unpack.bin example/example.sna
|
|
|
|
# binary is positioned from ORG 0, not usable, just assembling to verify the syntax
|
|
unpack.bin: unpack.asm
|
|
sjasmplus --msg=war --lst --lstlab=sort --raw=unpack.bin unpack.asm
|
|
|
|
example/example.sna: unpack.asm example/example.asm
|
|
cd example && sjasmplus --msg=war --lst --lstlab=sort example.asm
|
|
|
|
clean:
|
|
$(RM) unpack.bin unpack.lst example/example.sna example/example.lst
|