comparison Makefile @ 31888:a564f632ba49

Remove hack that skips including dependency files on distclean. Now that dependency files are generated as a sideeffect of compilation this workaround is no longer needed since distclean no longer tries to create them.
author diego
date Tue, 17 Aug 2010 15:12:35 +0000
parents 2cc844518554
children 6e0b5a97e00f
comparison
equal deleted inserted replaced
31887:2cc844518554 31888:a564f632ba49
1152 dhahelperwinclean: 1152 dhahelperwinclean:
1153 -rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp) 1153 -rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp)
1154 1154
1155 1155
1156 1156
1157 # Do not include dependencies when they are about to be removed anyway.
1158 ifneq ($(MAKECMDGOALS),distclean)
1159 -include $(DEPS) 1157 -include $(DEPS)
1160 endif
1161 1158
1162 .PHONY: all doxygen *install* *tools drivers dhahelper* 1159 .PHONY: all doxygen *install* *tools drivers dhahelper*
1163 .PHONY: checkheaders *clean tests 1160 .PHONY: checkheaders *clean tests
1164 1161
1165 # Disable suffix rules. Most of the builtin rules are suffix rules, 1162 # Disable suffix rules. Most of the builtin rules are suffix rules,