mirror of
https://github.com/fachat/xa65.git
synced 2025-01-07 19:29:40 +00:00
19 lines
298 B
Makefile
19 lines
298 B
Makefile
|
|
all: loader example test2 rom65
|
|
|
|
loader: loader.a65 file.def
|
|
../xa loader.a65 -o loader
|
|
|
|
clean:
|
|
rm -f loader test2 example a.o65 rom65
|
|
|
|
example: test.a
|
|
../xa -R test.a -o example
|
|
|
|
test2: test2.a
|
|
../xa test2.a -o test2
|
|
|
|
rom65: test.a
|
|
../mkrom.sh -O "-G" -S "-bd 1234" -R rom65 test.a test.a
|
|
|