mirror of
https://github.com/cc65/cc65.git
synced 2025-01-01 03:30:20 +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:
|