20 lines
941 B
Makefile
Executable File
20 lines
941 B
Makefile
Executable File
###############################################################################
|
|
# Rule to assemble and link all assembly files
|
|
###############################################################################
|
|
build:
|
|
ca65 atlantico.asm -o atlantico.o
|
|
ld65 -C nes.cfg atlantico.o -o atlantico.nes
|
|
|
|
###############################################################################
|
|
# Rule to remove all object (.o) and cartridge (.nes) files
|
|
###############################################################################
|
|
clean:
|
|
rm *.o *.nes
|
|
|
|
###############################################################################
|
|
# Rule to run the final cartridge .nes file in the FCEUX emulator
|
|
###############################################################################
|
|
run:
|
|
on-workspace 1 "fceux /home/tyrel/code/6502nes/atlantico/atlantico.nes && i3-msg '[id=$(xdotool getactivewindow)] floating enable'"
|
|
#on-workspace 1 "fceux atlantico.nes"
|