diff options
author | pixel <pixel> | 2003-04-08 00:04:53 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-04-08 00:04:53 +0000 |
commit | adb4a8774c3eae561032a51e219aff7a9b3f73c7 (patch) | |
tree | 743a04385d78e19f651ef15a10561aa1c9bea0ef /lib | |
parent | c0108c1022ede4743247081f408ca7780095e520 (diff) |
Fixing mingw32 port
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.sol.mingw | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Makefile.sol.mingw b/lib/Makefile.sol.mingw index 333bf71..58da692 100644 --- a/lib/Makefile.sol.mingw +++ b/lib/Makefile.sol.mingw @@ -3,7 +3,7 @@ CXX = i586-mingw32msvc-g++ AR = i586-mingw32msvc-ar RANLIB = i586-mingw32msvc-ranlib CPPFLAGS = -I../include -DFORCE64 -I../../Baltisot/include -DDEBUG `/usr/local/win32/bin/sdl-config --cflags` -O3 -mwindows -I/usr/local/win32/include -OBJECTS = engine.o glbase.o glfont.o glshape.o glwidgets.o gltexture.o sprite.o +OBJECTS = base.o engine.o font.o glbase.o glfont.o glshape.o glsprite.o glwidgets.o mcolor.o shape.o sprite.o texture.o TARGET = mogltk-sol.a all: $(TARGET) @@ -14,4 +14,3 @@ $(TARGET): $(OBJECTS) clean: rm -f *.o $(TARGET) - |