Building of the static library

This commit is contained in:
2014-07-25 17:47:48 +02:00
committed by Valeriano A.R
parent 985a501788
commit 616602f91c
7 changed files with 119 additions and 44 deletions

View File

@@ -1,12 +1,15 @@
CC= i486-mingw32-gcc
LAUNCHER=
RM=rm -rf
CC = i486-mingw32-gcc
AR = i486-mingw32-ar
LAUNCHER =
RM = rm -rf
MKDIR = mkdir
LIBS= -L/usr/i486-mingw/lib -D_GNU_SOURCE=1 -Dmain=SDL_main -lopengl32
CFLAGS= -I/usr/i486-mingw/include -lmingw32 -lSDLmain -lSDL -mwindows
LDFLAGS=
RESULT=game.exe
RES_GAMELIB=libgame.a
RES_GAME=game.exe
BUILDDIR=build-mingw
include Makefile.common