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=gcc
LAUNCHER=
RM=rm -rf
CC = gcc
AR = ar
LAUNCHER =
RM = rm -rf
MKDIR = mkdir
LIBS=-I/mingw/include/SDL -D_GNU_SOURCE=1 -Dmain=SDL_main -lopengl32
CFLAGS= -L/mingw/lib -lmingw32 -lSDLmain -lSDL -mwindows -g
LDFLAGS=
RESULT=game.exe
RES_GAMELIB=libgame.a
RES_GAME=game.exe
BUILDDIR=build-mingw
include Makefile.common