B-CK ANDREAS/TKELOV96ORD wrote:
> 
> Is there any ready done script or function for CVS
> that produces a list of all files with a certain label, BOM

Not that I know of.  

Usually BOMs are only good for distributing with installations (they are
also known as manifests).  Consequently I put the BOM-generation work
into my build tools, not into CVS scripts.

I have written a BSD install replacement that appends to a file; then I
make sure that in my makefiles I never do this:

  $(INSTALL) * $(INSTALLDIR)

...but do this instead:

  $(INSTALL) $(FILES) $(INSTALLDIR)

Then my install script appends to a BOM that finally gets copied into
the install directory and that's it.

Cheers,
Laird

Reply via email to