diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-08 12:00:11 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-08 12:00:11 +0100 |
commit | 0598fdac5fa618aae1ec8204cee3f37ddb8b1a60 (patch) | |
tree | 17c461227827b73a7a7ebdd0538c550fdbdfa592 /src | |
parent | fb3d9b016893c29e0bb0b1ebd29480c4e86c2e31 (diff) | |
download | gold-mine-run-0598fdac5fa618aae1ec8204cee3f37ddb8b1a60.tar.gz gold-mine-run-0598fdac5fa618aae1ec8204cee3f37ddb8b1a60.zip |
More optimised binary
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 1631723..577d9e0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ endif BIN := ../game.exe CC := i586-pc-msdosdjgpp-gcc -CFLAGS := -I. -I$(LIBMIKMOD_BASE)/include -c -Wall -Werror -pedantic -O2 -march=i386 -DDEBUG +CFLAGS := -I. -I$(LIBMIKMOD_BASE)/include -c -Wall -Werror -pedantic -O2 -fomit-frame-pointer -ffast-math -march=i386 -DDEBUG LDFLAGS := -s -L$(LIBMIKMOD_BASE)/dos LIBS := -lmikmod |