regular/homebrew build selection for Mac OS X

pull/489/head
orignal 8 years ago
parent b03a6a5327
commit aa215f2a5a

@ -14,7 +14,11 @@ USE_STATIC := no
ifeq ($(UNAME),Darwin) ifeq ($(UNAME),Darwin)
DAEMON_SRC += DaemonLinux.cpp DAEMON_SRC += DaemonLinux.cpp
include Makefile.homebrew ifeq ($(HOMEBREW),1)
include Makefile.homebrew
else
include Makefile.osx
endif
else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1) else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1)
DAEMON_SRC += DaemonLinux.cpp DAEMON_SRC += DaemonLinux.cpp
include Makefile.bsd include Makefile.bsd

@ -104,7 +104,7 @@ brew install libressl boost
Then build: Then build:
```bash ```bash
make make HOMEBREW=1
``` ```

Loading…
Cancel
Save