mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
31 lines
433 B
Makefile
31 lines
433 B
Makefile
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
ifdef CROSS_COMPILE
|
|
$(info CC: $(CC))
|
|
endif
|
|
|
|
ifneq ($(shell echo),)
|
|
CMD_EXE = 1
|
|
endif
|
|
|
|
ifdef CMD_EXE
|
|
DEL = -del /f
|
|
else
|
|
DEL = $(RM)
|
|
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:
|
|
$(DEL) gamate-fixcart
|
|
|
|
install zip:
|