summaryrefslogtreecommitdiff
path: root/lib/Makefile.sol.mingw
blob: 1973c70872a639d18ed2b4abfff1f4ae7b8cb932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC = i586-mingw32msvc-gcc
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 gltexture.o sprite.o
TARGET = mogltk-sol.a

all: $(TARGET)

$(TARGET): $(OBJECTS)
	$(AR) r $(TARGET) $(OBJECTS)
	$(RANLIB) $(TARGET)

clean:
	rm -f *.o $(TARGET)