|
|
@ -51,17 +51,20 @@ else |
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
ifneq (, $(findstring darwin, $(SYS))) |
|
|
|
ifneq (, $(findstring darwin, $(SYS))) |
|
|
|
|
|
|
|
DAEMON_SRC += $(DAEMON_SRC_DIR)/DaemonUnix.cpp |
|
|
|
ifeq ($(HOMEBREW),1) |
|
|
|
ifeq ($(HOMEBREW),1) |
|
|
|
include Makefile.homebrew |
|
|
|
include Makefile.homebrew |
|
|
|
else |
|
|
|
else |
|
|
|
include Makefile.osx |
|
|
|
include Makefile.osx |
|
|
|
endif |
|
|
|
endif |
|
|
|
else ifneq (, $(findstring linux, $(SYS))$(findstring gnu, $(SYS))) |
|
|
|
else ifneq (, $(findstring linux, $(SYS))$(findstring gnu, $(SYS))) |
|
|
|
|
|
|
|
DAEMON_SRC += $(DAEMON_SRC_DIR)/DaemonUnix.cpp |
|
|
|
include Makefile.linux |
|
|
|
include Makefile.linux |
|
|
|
else ifneq (, $(findstring freebsd, $(SYS))$(findstring openbsd, $(SYS))) |
|
|
|
else ifneq (, $(findstring freebsd, $(SYS))$(findstring openbsd, $(SYS))) |
|
|
|
|
|
|
|
DAEMON_SRC += $(DAEMON_SRC_DIR)/DaemonUnix.cpp |
|
|
|
include Makefile.bsd |
|
|
|
include Makefile.bsd |
|
|
|
else ifneq (, $(findstring mingw, $(SYS))$(findstring windows-gnu, $(SYS))$(findstring cygwin, $(SYS))) |
|
|
|
else ifneq (, $(findstring mingw, $(SYS))$(findstring windows-gnu, $(SYS))$(findstring cygwin, $(SYS))) |
|
|
|
DAEMON_SRC += Win32/Win32App.cpp Win32/Win32Service.cpp Win32/Win32NetState.cpp |
|
|
|
DAEMON_SRC += $(DAEMON_SRC_DIR)/DaemonWin32.cpp Win32/Win32App.cpp Win32/Win32Service.cpp Win32/Win32NetState.cpp |
|
|
|
include Makefile.mingw |
|
|
|
include Makefile.mingw |
|
|
|
else # not supported
|
|
|
|
else # not supported
|
|
|
|
$(error Not supported platform) |
|
|
|
$(error Not supported platform) |
|
|
|