1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

- Add a way to give additional compiler flags with USER_CFLAGS.

- Add possibility to specify an file name extension for generated executables (PROGEXT).
This commit is contained in:
Christian Groessler 2013-12-18 21:54:14 +01:00
parent e0262750ce
commit 418209f923

View File

@ -29,7 +29,8 @@ endif
CFLAGS += -MMD -MP -O -std=c89 -I common \
-Wall -Wextra -Wno-char-subscripts -Werror \
-DCA65_INC=$(CA65_INC) -DCC65_INC=$(CC65_INC) \
-DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG)
-DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG) \
$(USER_CFLAGS)
LDLIBS += -lm
@ -88,10 +89,10 @@ define PROG_template
$$(eval $$(call OBJS_template,$1))
../bin/$1: $$($1_OBJS) ../wrk/common/common.a | ../bin
../bin/$1$(PROGEXT): $$($1_OBJS) ../wrk/common/common.a | ../bin
$$(CC) $$(LDFLAGS) -o $$@ $$^ $$(LDLIBS)
$1: ../bin/$1
$1: ../bin/$1$(PROGEXT)
endef