comparison Makefile @ 27411:c38f90ae922a

Skip dependency generation if we just run distclean or if skipping is requested explicitly on the command line.
author diego
date Sat, 09 Aug 2008 13:53:19 +0000
parents 778fac8c186f
children 917c93c652b0
comparison
equal deleted inserted replaced
27410:33b9d3402d3e 27411:c38f90ae922a
1053 dhahelperwinclean: 1053 dhahelperwinclean:
1054 rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp) 1054 rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp)
1055 1055
1056 1056
1057 1057
1058 # Do not include dependencies when they are about to be removed anyway
1059 # or if SKIP_DEPS was set to "yes" on the command line.
1060 ifneq ($(MAKECMDGOALS),distclean)
1061 ifneq ($(SKIP_DEPS),yes)
1058 -include $(DEPS) 1062 -include $(DEPS)
1063 endif
1064 endif
1059 1065
1060 .PHONY: all doxygen *install* *tools drivers dhahelper* 1066 .PHONY: all doxygen *install* *tools drivers dhahelper*
1061 .PHONY: checkheaders *clean dep depend tests 1067 .PHONY: checkheaders *clean dep depend tests