summaryrefslogtreecommitdiff
path: root/src/Makefile.osx
diff options
context:
space:
mode:
authorbustico2011-01-27 12:26:11 +0000
committerbustico2011-01-27 12:26:11 +0000
commita897bb17e74ff73b9ee19ace0ef62466030ab6e6 (patch)
tree0af86086972e8adbfbbbd5177583bc8340921bd0 /src/Makefile.osx
parent0cebd5d6540937019be80429679472a1b50741c2 (diff)
downloadivy-c-a897bb17e74ff73b9ee19ace0ef62466030ab6e6.zip
ivy-c-a897bb17e74ff73b9ee19ace0ef62466030ab6e6.tar.gz
ivy-c-a897bb17e74ff73b9ee19ace0ef62466030ab6e6.tar.bz2
ivy-c-a897bb17e74ff73b9ee19ace0ef62466030ab6e6.tar.xz
correct OSX Makefile to set correct dylib path on executable at install
correct broadcast adress for loopback (not the same beetween linux/windows and osx)
Diffstat (limited to 'src/Makefile.osx')
-rw-r--r--src/Makefile.osx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.osx b/src/Makefile.osx
index 4043935..5755b3b 100644
--- a/src/Makefile.osx
+++ b/src/Makefile.osx
@@ -136,6 +136,9 @@ installbins: tools
test -d $(DESTDIR)$(PREFIX)/bin || mkdir -p $(DESTDIR)$(PREFIX)/bin
install -m755 $(TOOLS_DIR)/ivyprobe $(DESTDIR)$(PREFIX)/bin
install -m755 $(TOOLS_DIR)/ivyperf $(DESTDIR)$(PREFIX)/bin
+ install_name_tool -change libivy.dylib $(DESTDIR)$(PREFIX)/lib/libivy.dylib $(DESTDIR)$(PREFIX)/bin/ivyprobe
+ install_name_tool -change libivy.dylib $(DESTDIR)$(PREFIX)/lib/libivy.dylib $(DESTDIR)$(PREFIX)/bin/ivyperf
+
tools: static-libs
@(cd $(TOOLS_DIR) && $(MAKE) -f Makefile.osx)