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= -lSDL -lpthread -L/usr/X11R6/lib -L/usr/lib -lm -lGL -lX11
CFLAGS= -Wall -g -I/usr/include/ -I/usr/include/SDL/ -I/usr/X11R6/include/
LDFLAGS=
RESULT=game
RES_GAMELIB=libgame.a
RES_GAME=game
BUILDDIR=build-linux
include Makefile.common