78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
subdirs:
for i in ${SUBDIRS}; do \
${DIR_ENTER}; \
${MAKE} ${MFLAGS} || exit 1; \
${DIR_LEAVE}; \
done
depend: pre-depend
regen=0; \
for i in ${SRCS}; do [ $$i -nt .deps ] && regen=1; done; \
if [ $$regen = 1 ]; then \
rm -f .deps; \
for i in ${SRCS}; do \
case $${i##*.} in \
c|cc|cxx|m) \
|
|
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
subdirs:
for i in ${SUBDIRS}; do \
${DIR_ENTER}; \
${MAKE} ${MFLAGS} || exit 1; \
${DIR_LEAVE}; \
done
depend: pre-depend ${SRCS}
regen=0; \
for i in ${SRCS}; do [ $$i -nt .deps ] && regen=1; done; \
if [ $$regen = 1 ]; then \
rm -f .deps; \
for i in ${SRCS}; do \
case $${i##*.} in \
c|cc|cxx|m) \
|