mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
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:
|