89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
depend: pre-depend ${SRCS}
regen=0; \
for i in ${SRCS}; do test $$i -nt .deps && regen=1; done; \
if test x"$$regen" = x"1"; then \
list=""; \
${DEPEND_STATUS}; \
rm -f .deps; \
for i in ${SRCS}; do \
case $${i##*.} in \
c|cc|cxx|m) \
list="$$list $$i"; \
;; \
esac; \
done; \
|
<
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
depend: pre-depend ${SRCS}
regen=0; \
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) \
list="$$list $$i"; \
;; \
esac; \
done; \
|