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,14 +1,16 @@
CC= emcc
LAUNCHER= start
RM=rm -rf
CC = emcc
AR = emar
LAUNCHER = start
RM = rm -rf
MKDIR = mkdir
LIBS=
CFLAGS= -s FULL_ES2=1 -s ASM_JS=1 -O1 -Wno-implicit-function-declaration
#LDFLAGS= --embed-file data
LDFLAGS= --preload-file data
RESULT=game.html
RES_GAMELIB=libgame.a
RES_GAME=game.html
BUILDDIR=build-emscripten
ifeq ($(target),release)