1
0
mirror of https://github.com/cc65/cc65.git synced 2024-05-28 00:48:27 +00:00

attempt to prevent utils being compiled with cc65

This commit is contained in:
mrdudz 2022-02-11 16:53:34 +01:00
parent 118e73ddf9
commit 30b00ed076
3 changed files with 24 additions and 0 deletions

View File

@ -1,4 +1,12 @@
CC = $(CROSS_COMPILE)gcc
ifdef CROSS_COMPILE
$(info CC: $(CC))
endif
CFLAGS += -O3 -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS)
.PHONY: mostlyclean clean
atari: ataricvt

View File

@ -1,4 +1,12 @@
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

View File

@ -1,4 +1,12 @@
CC = $(CROSS_COMPILE)gcc
ifdef CROSS_COMPILE
$(info CC: $(CC))
endif
CFLAGS += -O3 -Wall -Wextra -Wno-char-subscripts $(USER_CFLAGS)
.PHONY: mostlyclean clean
zlib: warning