mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
bcc03acfc8
do we want to test they can be compiled, but also samples may use/require them. we might want to install them too, perhaps
13 lines
157 B
Makefile
13 lines
157 B
Makefile
|
|
.PHONY: mostlyclean clean
|
|
|
|
atari: ataricvt
|
|
|
|
ataricvt: ataricvt.c
|
|
$(CC) $(CFLAGS) -o ataricvt ataricvt.c
|
|
|
|
mostlyclean clean:
|
|
$(RM) ataricvt
|
|
|
|
install zip:
|