In my makefile, I have a:
include .depend
I also have a
depend:
rules for buiding .depend
Now, here is the problem, when ".depend" does not exist, I can't run "make depend"; I have to do "touch .depend; make depend"
Is there anyway to tell Make "if .depend does not exist, still allow me to run 'make depend'" ?
Thanks!