Browse Source

Added prefix support, which enables the homebrew package to work.

pull/113/head
Mikal Villa 10 years ago
parent
commit
fa461b1254
  1. 9
      Makefile.osx

9
Makefile.osx vendored

@ -12,6 +12,15 @@ LIBS = @@ -12,6 +12,15 @@ LIBS =
# Found no good way to detect it from command line. TODO: Might be some osx sysinfo magic
CXXFLAGS += -maes -DAESNI
${PREFIX}:
install: all
mkdir -p ${PREFIX}/
cp -r i2p ${PREFIX}/
# Apple Mac OSX
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)

Loading…
Cancel
Save