119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
test $$i -nt .deps && regen=1; \
deps="$$deps $${i%.m}.dep"; \
;; \
esac; \
done; \
if test x"$$regen" = x"1" -a x"$$deps" != "x"; then \
${DEPEND_STATUS}; \
if ${MAKE} ${MFLAGS} $$deps; then \
test -f .deps && rm .deps; \
cat $$deps >.deps; \
rm -f $$deps; \
${DEPEND_OK}; \
else \
:> .deps; \
${DEPEND_FAILED}; \
fi; \
fi
.c.dep .cc.dep .cxx.dep .m.dep:
${CPP} ${CPPFLAGS} -M $< >$@ || rm -f $@
.d.dep:
.xpm.dep:
pre-depend:
${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}
|
|
<
<
>
|
|
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
test $$i -nt .deps && regen=1; \
deps="$$deps $${i%.m}.dep"; \
;; \
esac; \
done; \
if test x"$$regen" = x"1" -a x"$$deps" != "x"; then \
${DEPEND_STATUS}; \
if ${MAKE} ${MFLAGS} $$deps && cat $$deps >.deps; then \
rm -f $$deps; \
${DEPEND_OK}; \
else \
:> .deps; \
touch -t 0001010000 .deps; \
${DEPEND_FAILED}; \
fi; \
fi
.c.dep .cc.dep .cxx.dep .m.dep:
${CPP} ${CPPFLAGS} -M $< >$@ || (rm -f $@; exit 1)
.d.dep:
.xpm.dep:
pre-depend:
${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}
|