%% gk <[EMAIL PROTECTED]> writes:

  g> I am using 'find -type d' to get a list of directories, which the
  g> 'find' command precedes with './' I know I could work around my
  g> problem by replacing '.' with $(CURDIR) but I do not understand why
  g> the following pattern rule is not invoked

  g> -include ./SOURCES.mk

Because make normalizes filenames like "./foo" to just "foo" internally,
so that things like this DTRT:

  bar: foo

  ./foo:
        @echo $@

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist


_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to