mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
21 lines
332 B
Makefile
21 lines
332 B
Makefile
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
ifdef CROSS_COMPILE
|
|
$(info CC: $(CC))
|
|
endif
|
|
|
|
CFLAGS += -O3 -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS)
|
|
|
|
.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:
|