mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
13 lines
194 B
Makefile
13 lines
194 B
Makefile
|
|
||
|
.PHONY: mostlyclean clean
|
||
|
|
||
|
gamate: gamate-fixcart
|
||
|
|
||
|
gamate-fixcart: gamate-fixcart.c
|
||
|
$(CC) $(CFLAGS) -o gamate-fixcart gamate-fixcart.c
|
||
|
|
||
|
mostlyclean clean:
|
||
|
$(RM) gamate-fixcart
|
||
|
|
||
|
install zip:
|