build: respect CFLAGS in makefile.mingw

Similar to the other Makefile.
This commit is contained in:
fanquake 2022-07-27 15:52:37 +01:00
parent 0cc037f8b0
commit d40daa6f22
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1
1 changed files with 9 additions and 6 deletions

View File

@ -21,15 +21,18 @@ RM = del
else
RM = rm -f
endif
#CFLAGS = -Wall -g
#CPPFLAGS = -DDEBUG -D_WIN32_WINNT=0X501
CFLAGS = -Wall -W -Wstrict-prototypes -Os
CPPFLAGS = -DNDEBUG -D_WIN32_WINNT=0X501
CFLAGS ?= -Os
CFLAGS += -Wall
CFLAGS += -W -Wstrict-prototypes
CPPFLAGS += -DNDEBUG -D_WIN32_WINNT=0X501
CPPFLAGS += -Iinclude
CPPFLAGS += -I.
LDLIBS = -lws2_32 -liphlpapi
# -lwsock32
# -liphlpapi is needed for GetBestRoute() and GetIpAddrTable()
LDLIBS = -lws2_32 -liphlpapi
PYTHON=\utils\python25\python
OBJS=miniwget.o minixml.o igd_desc_parse.o minisoap.o \
minissdpc.o \