diff options
author | Simon Warta <[email protected]> | 2015-06-22 13:12:59 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-06-22 13:12:59 +0200 |
commit | 61fe5f70701b4cab06c9763cc133b111788f8d02 (patch) | |
tree | 62ac80cbb85718d0aaf84cc935bf5d66cb66311c /src/build-data/makefile/gmake.in | |
parent | 808bc5edc075a36f190235dc4bdfcea07a53c5df (diff) |
Use install_name_tool to change location of botan lib on OSX
Diffstat (limited to 'src/build-data/makefile/gmake.in')
-rw-r--r-- | src/build-data/makefile/gmake.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/build-data/makefile/gmake.in b/src/build-data/makefile/gmake.in index af902c57b..6b22a26f3 100644 --- a/src/build-data/makefile/gmake.in +++ b/src/build-data/makefile/gmake.in @@ -35,9 +35,11 @@ all: $(APP) $(TEST) $(APP): $(LIBRARIES) $(APPOBJS) $(APP_LINK_CMD) $(LDFLAGS) $(APPOBJS) -L%{out_dir} -l%{libname} $(APP_LINKS_TO) -o $(APP) + $(APP_POST_LINK_CMD) $(TEST): $(LIBRARIES) $(TESTOBJS) $(TEST_LINK_CMD) $(LDFLAGS) $(TESTOBJS) -L%{out_dir} -l%{libname} $(TEST_LINKS_TO) -o $(TEST) + $(TEST_POST_LINK_CMD) $(STATIC_LIB): $(LIBOBJS) $(RM) $(STATIC_LIB) |