(20111213)

This commit is contained in:
2011-12-13 17:00:00 +01:00
commit 8a84d0a0f5
45 changed files with 2001 additions and 0 deletions

26
Makefile Normal file
View File

@@ -0,0 +1,26 @@
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.mingw
else
ifeq ($(TARGET_ARCH),linux)
include Makefile.linux
else
ifeq ($(TARGET_ARCH),macosx)
include Makefile.macosx
endif # macosx
endif # linux
endif # mingw