diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-12-08 06:25:29 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-12-08 06:25:29 +0100 |
commit | 576d22dd0b7b14a57720a4cf51bebab03badf3de (patch) | |
tree | 20eb1b709d972476b42d92f346201f8c7108d7ca | |
parent | 17331ec1aa0b09a42f2884804d2e2b78a7d38c9d (diff) |
Actually, that's not a good idea for win32 for now. Dll swapping should work out of the box anyway. We'll see.
-rw-r--r-- | Makefile.mingw32 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.mingw32 b/Makefile.mingw32 index 4d74528..e4177db 100644 --- a/Makefile.mingw32 +++ b/Makefile.mingw32 @@ -172,11 +172,12 @@ lua-interface-light-hc.c \ GL_GLUE = gl-glue.s -WHOLE_SOURCES = $(BALTISOT_SOURCES) $(LUA_SOURCES) $(LUAINTERFACE_SOURCES) $(GL_GLUE) +WHOLE_SOURCES = $(BALTISOT_SOURCES) $(LUA_SOURCES) $(LUAINTERFACE_SOURCES) +# $(GL_GLUE) LUAINTERFACE_OBJECTS = $(addsuffix .o, $(notdir $(basename $(LUAINTERFACE_SOURCES)))) LUAINTERFACE_MAIN_OBJECTS = $(addsuffix .o, $(notdir $(basename $(LUAINTERFACE_MAIN_SOURCES)))) -LUAINTERFACE_DLL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(BALTISOT_SOURCES) $(GL_GLUE)))) +LUAINTERFACE_DLL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(BALTISOT_SOURCES))))) #+GL_GLUE LUAINTERFACE_LIGHT_OBJECTS = lua-interface-light.o $(addsuffix .o, $(notdir $(basename $(LUAINTERFACE_LIGHT_SOURCES)))) ALL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(WHOLE_SOURCES)))) |