2014-07-16 18:59:17 +02:00
|
|
|
UNAME := $(shell uname -s)
|
2013-12-10 08:05:42 -05:00
|
|
|
|
2014-07-16 18:59:17 +02:00
|
|
|
ifeq ($(UNAME),Darwin)
|
|
|
|
include Makefile.osx
|
2014-08-11 09:51:53 -04:00
|
|
|
else ifeq ($(UNAME), FreeBSD)
|
|
|
|
include Makefile.bsd
|
2014-07-16 18:59:17 +02:00
|
|
|
else
|
|
|
|
include Makefile.linux
|
2014-06-02 10:05:04 -04:00
|
|
|
endif
|
|
|
|
|