Makefile-manual
changeset 0 b112defa99c0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Makefile-manual	Mon May 19 21:10:35 2014 +0200
     1.3 @@ -0,0 +1,26 @@
     1.4 +
     1.5 +
     1.6 +OS=$(shell uname)
     1.7 +
     1.8 +ifeq ($(OS), Darwin)
     1.9 +	FILE=Makefile.mac
    1.10 +endif
    1.11 +
    1.12 +ifneq (,$(findstring MINGW,$(OS)))
    1.13 +	FILE=Makefile.mingw
    1.14 +endif
    1.15 +
    1.16 +ifeq ($(OS), Linux)
    1.17 +	FILE=Makefile.linux
    1.18 +endif
    1.19 +
    1.20 +ifeq ($(OS), FreeBSD)
    1.21 +	FILE=Makefile.freebsd
    1.22 +endif
    1.23 +
    1.24 +ifeq ($(FILE), )
    1.25 +all:
    1.26 +	$(error Your platform ${OS} is not supported at this time.)
    1.27 +endif
    1.28 +
    1.29 +include $(FILE)