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,26 +1,14 @@
ifneq (,$(findstring MINGW,$(shell uname -s)))
TARGET_ARCH=mingw
else
ARCH:=$(shell uname)
ifeq ($(ARCH), Darwin)
TARGET_ARCH=macosx
else
TARGET_ARCH=linux
endif # Darwin
endif # windir
ifeq ($(TARGET_ARCH),mingw)
include Makefile.win32
else
ifeq ($(TARGET_ARCH),linux)
include Makefile.linux
else
ifeq ($(TARGET_ARCH),macosx)
include Makefile.macosx
endif # macosx
endif # linux
endif # mingw