hello
i just wondered why the ruls SubDirHdrs in the builtin Jambase file is
rule SubDirHdrs
{
SUBDIRHDRS += $(<) ;
}
and not
rule SubDirHdrs
{
SUBDIRHDRS += [ FDirName $(<) ] ;
}
the documentation (Jambase Manpage) says:
"SubDirHdrs d1 ... dn ;
Adds the path d1/.../dn/ to the header search paths for source
files in SubDir's directory. d1 through dn are elements of a directory
path."
i think this means that d1 to dn are composed together to one path.
what is wrong?
regards
jan
ps: i there a collection of user defined jam rules on the net. i have
written some rules to handle PCCTS (a well-known parser generator)
files. although i not sure if i did it correctly (i just works quite
well in my case) i would like to share it with others who need it.