Overview
Comment: | Fix dependency generation when using NetBSD make. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f0b9d95ddcf0f526dae85286b8142eec |
User & Date: | js on 2007-10-13 08:14:01 |
Other Links: | manifest | tags |
Context
2007-10-13
| ||
08:24 | Make ${plugindir} independent from ${libdir}. check-in: ef768e3273 user: js tags: trunk | |
08:14 | Fix dependency generation when using NetBSD make. check-in: f0b9d95ddc user: js tags: trunk | |
08:11 | Fix a typo. check-in: ecace2e459 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [88f6662b77] to [c1026d46fe].
︙ | |||
87 88 89 90 91 92 93 94 95 96 97 98 99 100 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | + | ${DIR_ENTER}; \ ${MAKE} ${MFLAGS} || exit 1; \ ${DIR_LEAVE}; \ done depend: pre-depend ${SRCS} regen=0; \ test -f .deps || regen=1; \ for i in ${SRCS}; do test $$i -nt .deps && regen=1; done; \ if test x"$$regen" = x"1"; then \ list=""; \ ${DEPEND_STATUS}; \ for i in ${SRCS}; do \ case $${i##*.} in \ c|cc|cxx|m) \ |
︙ |