Do not generate dependencies if we are going to clean.
parent
ecf959ce3d
commit
623add8303
5
makefile
5
makefile
|
@ -50,5 +50,8 @@ distclean: clean
|
||||||
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
|
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
|
||||||
rm -f $@.$$$$
|
rm -f $@.$$$$
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS), clean)
|
||||||
|
ifneq ($(MAKECMDGOALS), distclean)
|
||||||
-include $(DEPEND)
|
-include $(DEPEND)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
Loading…
Reference in New Issue