27 lines
405 B
Makefile
27 lines
405 B
Makefile
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
|