2023-11-15 12:19:10 +01:00
|
|
|
# Please Ignore for now, I will make a better makefile in the future
|
2023-10-25 11:34:43 +02:00
|
|
|
# I promisse
|
|
|
|
|
2023-11-15 12:19:10 +01:00
|
|
|
# ToDo:
|
|
|
|
# Ignore Upload when no programmer found
|
|
|
|
|
2023-10-25 11:34:43 +02:00
|
|
|
all: compile upload
|
|
|
|
|
|
|
|
compile:
|
|
|
|
@echo "Compiling for 65c02"
|
|
|
|
@vasm6502_oldstyle -Fbin -dotdir -wdc02 main.s | grep :
|
|
|
|
|
|
|
|
upload:
|
|
|
|
@echo "Uploading"
|
|
|
|
@minipro -p SST39SF040 -w a.out -Sy
|
|
|
|
|