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

This commit is contained in:
Mikal Villa 2014-11-22 23:12:05 +01:00
parent dcefe7d221
commit fa461b1254

View File

@ -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)