96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
for i in ${SRCS}; do \
case $${i##*.} in \
c|cc|cxx|m) \
list="$$list $$i"; \
;; \
esac; \
done; \
if ${CPP} ${CPPFLAGS} -M $$list >.deps; then \
${DEPEND_OK}; \
else \
${DEPEND_FAILED}; \
fi; \
fi
pre-depend:
${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}
${LINK_STATUS}
|
>
|
|
|
|
>
|
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
for i in ${SRCS}; do \
case $${i##*.} in \
c|cc|cxx|m) \
list="$$list $$i"; \
;; \
esac; \
done; \
if test x"$$list" != "x"; then \
if ${CPP} ${CPPFLAGS} -M $$list >.deps; then \
${DEPEND_OK}; \
else \
${DEPEND_FAILED}; \
fi; \
fi; \
fi
pre-depend:
${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}
${LINK_STATUS}
|