diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-01-16 21:21:16 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-01-16 21:21:16 +0000 |
commit | 9c984aa67d2bd607032ba7fa911c77f9bbf87d4c (patch) | |
tree | 879aab02a8d08d3c72d925efc1de39c64f914b39 /src | |
parent | 39ada0e9dcac2ec27561f5f6bf7f25b63b53c1b8 (diff) | |
download | ubox-msx-lib-9c984aa67d2bd607032ba7fa911c77f9bbf87d4c.tar.gz ubox-msx-lib-9c984aa67d2bd607032ba7fa911c77f9bbf87d4c.zip |
Fixed compilation flags
CFLAGS was used in LDFLAGS.
Diffstat (limited to 'src')
-rw-r--r-- | src/spman/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spman/Makefile b/src/spman/Makefile index be9effd..db8bcdc 100644 --- a/src/spman/Makefile +++ b/src/spman/Makefile @@ -5,7 +5,7 @@ include ../../config.env CC := sdcc AR := sdar -CFLAGS := -mz80 --Werror -I../../include --fsigned-char --std-sdcc99 --opt-code-speed $(EXTRA_CFLAGS) +CFLAGS := -mz80 --Werror -I../../include --fsigned-char --std-sdcc99 --opt-code-speed --fno-omit-frame-pointer $(EXTRA_CFLAGS) SOURCES := $(wildcard *.c) OBJS := $(patsubst %.c,%.rel,$(SOURCES)) |