Created
February 13, 2025 08:30
-
-
Save 3dgoose/bc3adeb15de644b6b32de66402023ffb to your computer and use it in GitHub Desktop.
Makefile for cc65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC = /usr/bin/cc65 | |
CA = /usr/bin/ca65 | |
CL = /usr/bin/cl65 | |
all: | |
$(CC) main.c | |
$(CA) main.s | |
$(CL) main.o | |
clean: | |
rm -f *.o | |
rm -f *.s | |
rm -f main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment