Differences From Artifact [92feb15db4]:
- File
buildsys.mk.in
— part of check-in
[72ce4372e0]
at
2018-01-21 21:45:44
on branch trunk
— Use FRAMEWORK_LIBS instead of LIBS for .frameworks
This allows linking the framework against other frameworks rather than
other shared libs. (user: js, size: 27759) [annotate] [blame] [check-ins using]
To Artifact [ae2de47818]:
- File buildsys.mk.in — part of check-in [38d3be8fbf] at 2018-02-07 20:14:57 on branch trunk — Small cleanup (user: js, size: 27698) [annotate] [blame] [check-ins using]
︙ | |||
59 60 61 62 63 64 65 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | - - | PLUGIN_CFLAGS = @PLUGIN_CFLAGS@ PLUGIN_LDFLAGS = @PLUGIN_LDFLAGS@ PLUGIN_SUFFIX = @PLUGIN_SUFFIX@ FRAMEWORK_LDFLAGS = @FRAMEWORK_LDFLAGS@ FRAMEWORK_LDFLAGS_INSTALL_NAME = @FRAMEWORK_LDFLAGS_INSTALL_NAME@ CODESIGN = @CODESIGN@ CODESIGN_IDENTITY ?= - |
︙ | |||
685 686 687 688 689 690 691 | 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 | - + | ${MAKE} install || exit $$?; \ ${DIR_LEAVE}; \ done for i in "" ${SHARED_LIB}; do \ test x"$$i" = x"" && continue; \ ${INSTALL_STATUS}; \ |
︙ | |||
814 815 816 817 818 819 820 | 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 | - + | ${MAKE} uninstall || exit $$?; \ ${DIR_LEAVE}; \ done for i in "" ${SHARED_LIB}; do \ test x"$$i" = x"" && continue; \ if test -f ${DESTDIR}${libdir}/$$i; then \ |
︙ |