The following makefile searches the current directory for files that end in
the suffix ".texi" and apply certain suffix rules to the specified targets.
But all the ".texi" files reside in another directory
/home/ssharma/docs-project/docs/src/. I have consulted the GNU Make User's
Manual and have attempted the following:
TEXI_SRC:=${vpath %.texi src}
instead of:
TEXI_SRC:=${wildcard *.texi}
as src is a subdirectory to the current directory.
But it seems that make isn't searching the directory "src" and leaving the
macro "TEXI_SRC" empty. If "vpath %.texi src" returns the ".texi" files from
the directory "src", shouldn't this be valid?
Sudhir Sharma