87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
${DIR_ENTER}; \
${MAKE} ${MFLAGS} || exit 1; \
${DIR_LEAVE}; \
done
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) \
|
>
|
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) \
|