diff options
-rw-r--r-- | src/Makefile.m32 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 9765adef3..46eebaf5e 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -20,6 +20,8 @@ ZLIB_PATH = ../../zlib-1.2.3 endif CC = gcc +CFLAGS = -g -O2 +LDFLAGS = RC = windres RCFLAGS = --include-dir=../include -O COFF -i RM = rm -f @@ -33,8 +35,6 @@ STRIP = strip -s ## Nothing more to do below this line! INCLUDES = -I. -I.. -I../include -I../lib -I$(ZLIB_PATH) -CFLAGS = -g -O2 -LDFLAGS = COMPILE = $(CC) $(INCLUDES) $(CFLAGS) LINK = $(CC) $(LDFLAGS) -o $@ |