Differences From Artifact [879b10b864]:
- File
buildsys.mk.in
— part of check-in
[23fbb8c3ff]
at
2017-10-24 22:07:16
on branch trunk
— Do not extract .a files to link them in
This is only required to combine multiple .a files into one. (user: js, size: 26039) [annotate] [blame] [check-ins using]
To Artifact [628378e719]:
- File buildsys.mk.in — part of check-in [511e89e9c6] at 2017-10-29 02:25:24 on branch trunk — Fix make install running several times (user: js, size: 26322) [annotate] [blame] [check-ins using]
︙ | |||
654 655 656 657 658 659 660 | 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 | - + | out="$@"; \ if ${CC} ${PLUGIN_CFLAGS} ${CFLAGS} ${CPPFLAGS} ${CFLAGS_$<} ${CFLAGS_$@} -x c -c -o $@ $<; then \ ${COMPILE_PLUGIN_OK}; \ else \ ${COMPILE_PLUGIN_FAILED}; \ fi |
︙ | |||
711 712 713 714 715 716 717 718 719 720 721 722 723 724 | 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 | + + + + + + + + + + | ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ fi \ done for i in "" ${INCLUDES}; do \ test x"$$i" = x"" && continue; \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${includedir}/${includesubdir} && ${INSTALL} -m 644 $$i ${DESTDIR}${includedir}/${includesubdir}/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ fi \ done for i in "" ${MO_FILES}; do \ test x"$$i" = x"" && continue; \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${localedir}/$${i%.mo}/LC_MESSAGES && ${INSTALL} -m 644 $$i ${DESTDIR}${localedir}/$${i%.mo}/LC_MESSAGES/${localename}.mo; then \ ${INSTALL_OK}; \ else \ |
︙ | |||
736 737 738 739 740 741 742 | 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 | - + | fi \ done install-includes: for i in "" ${SUBDIRS} ${SUBDIRS_AFTER}; do \ test x"$$i" = x"" && continue; \ ${DIR_ENTER}; \ |
︙ |