mirror of
https://github.com/stid/woz64.git
synced 2024-11-21 19:31:21 +00:00
18 lines
554 B
Makefile
18 lines
554 B
Makefile
BUILD_PATH = ./bin
|
|
KICKASS_BIN = /opt/develop/stid/c64/KickAssembler/KickAss.jar
|
|
|
|
all: build
|
|
|
|
build:
|
|
java -jar ${KICKASS_BIN} -odir ${BUILD_PATH} -log ${BUILD_PATH}/buildlog.txt -showmem ./main.asm
|
|
cartconv -t normal -name "woz" -i ${BUILD_PATH}/main.prg -o ${BUILD_PATH}/woz.crt
|
|
|
|
eprom:
|
|
java -jar ${KICKASS_BIN} -odir ${BUILD_PATH} -log ${BUILD_PATH}/buildlog.txt -showmem ./main.asm
|
|
cartconv -t normal -name "woz" -i ${BUILD_PATH}/main.prg -o ${BUILD_PATH}/woz.crt
|
|
cartconv -i ${BUILD_PATH}/woz.crt -o ${BUILD_PATH}/woz.bin
|
|
|
|
clean:
|
|
rm -Rf ./bin
|
|
|