From 63b2df0dbe60cdeaf6e7990128345f4f366fc6aa Mon Sep 17 00:00:00 2001 From: Themaister Date: Sat, 29 Sep 2012 22:01:42 +0200 Subject: [PATCH] Fix build on Win32. --- Makefile.win | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.win b/Makefile.win index dbfec58b49..af1043da2c 100644 --- a/Makefile.win +++ b/Makefile.win @@ -213,9 +213,9 @@ $(TARGET): $(OBJ) $(JTARGET): $(JOBJ) ifeq ($(CXX_BUILD), 1) - $(Q)$(CXX) -o $@ $(JOBJ) -lSDL $(LDFLAGS) + $(Q)$(CXX) -o $@ $(JOBJ) -lSDL -ldxguid -ldinput8 $(LDFLAGS) else - $(Q)$(CC) -o $@ $(JOBJ) -lSDL $(LDFLAGS) + $(Q)$(CC) -o $@ $(JOBJ) -lSDL -ldxguid -ldinput8 $(LDFLAGS) endif @$(if $(Q), $(shell echo echo LD $@),)