Windows build updates.

This commit is contained in:
Steve 2018-03-24 16:58:04 +00:00
parent 30103bde5c
commit e1992b8ce4
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ blobwarsAttrition
*.o
.DS_Store
dist/*
/blobWarsAttrition.exe

View File

@ -5,16 +5,16 @@ LIBPATH = /usr/x86_64-w64-mingw32/lib
LOCALE_DIR = locale
SEARCHPATH += src/plat/win32
OBJS += win32Init.o
_OBJS += win32Init.o
include common.mk
CXXFLAGS += `$(SDLC) --cflags` -DVERSION=$(VERSION) -DREVISION=$(REVISION) -DDATA_DIR=\"$(DATA_DIR)\" -DLOCALE_DIR=\"$(LOCALE_DIR)\"
CXXFLAGS += -Wall -Wempty-body -ansi -pedantic -Werror -Wstrict-prototypes -Werror=maybe-uninitialized -Warray-bounds
CXXFLAGS += -g -lefence
CXXFLAGS += -fms-extensions -std=gnu11
LDFLAGS += `$(SDLC) --libs` -lm -lSDL2_mixer -lSDL2_image -lSDL2_ttf -lSDL2main -lz -lpng
include common.mk
LDFLAGS += `$(SDLC) --libs` -lm -lSDL2_mixer -lSDL2_image -lSDL2_ttf -lSDL2main -lpng -lz
# linking the program.
$(PROG): $(OBJS)