Overview
| Comment: | Update buildsys |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d6cf08de9455da2c11befca6cdc534a0 |
| User & Date: | js on 2017-10-16 22:49:47 |
| Other Links: | manifest | tags |
Context
|
2017-10-16
| ||
| 22:59 | Finally make modules work properly (check-in: 3a06dc7def user: js tags: trunk) | |
| 22:49 | Update buildsys (check-in: d6cf08de94 user: js tags: trunk) | |
|
2017-10-15
| ||
| 23:05 | Two minor cleanups - no functional change (check-in: 4465a415f1 user: js tags: trunk) | |
Changes
Modified buildsys.mk.in from [52e0238951] to [98d996be7a].
| ︙ | ︙ | |||
310 311 312 313 314 315 316 |
rm -fr $$out; \
${LINK_FAILED}; \
fi; \
for i in $$ars; do \
dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
rm -fr $$dir; \
done; \
| | | 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
rm -fr $$out; \
${LINK_FAILED}; \
fi; \
for i in $$ars; do \
dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
rm -fr $$dir; \
done; \
${MAKE} INSTALL_INCLUDES_IF_SUBDIR=${includesubdir} INSTALL_INCLUDES_DESTINATION=$$PWD/$$out/Headers install-includes; \
if test -f Info.plist; then \
i=Info.plist; \
${INSTALL_STATUS}; \
if ${INSTALL} -m 644 $$i $$out/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
|
| ︙ | ︙ | |||
848 849 850 851 852 853 854 855 856 857 |
test x"$$i" = x"" && continue; \
${DIR_ENTER}; \
${MAKE} install || exit $$?; \
${DIR_LEAVE}; \
done
if test x"${INSTALL_INCLUDES_IF_SUBDIR}" = x"" -o x"${includesubdir}" = x"${INSTALL_INCLUDES_IF_SUBDIR}"; then \
for i in "" ${INCLUDES}; do \
test x"$$i" = x"" && continue; \
${INSTALL_STATUS}; \
| > > > > > > | | 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 |
test x"$$i" = x"" && continue; \
${DIR_ENTER}; \
${MAKE} install || exit $$?; \
${DIR_LEAVE}; \
done
if test x"${INSTALL_INCLUDES_IF_SUBDIR}" = x"" -o x"${includesubdir}" = x"${INSTALL_INCLUDES_IF_SUBDIR}"; then \
if test x"${INSTALL_INCLUDES_DESTINATION}" != x""; then \
destination="${INSTALL_INCLUDES_DESTINATION}"; \
else \
destination="${DESTDIR}${includedir}/${includesubdir}"; \
fi; \
\
for i in "" ${INCLUDES}; do \
test x"$$i" = x"" && continue; \
${INSTALL_STATUS}; \
if ${MKDIR_P} $$destination && ${INSTALL} -m 644 $$i $$destination/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi \
done; \
fi
|
| ︙ | ︙ |