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