$Id: TODO,v 1.25 2004/07/21 14:56:20 joostvb Exp $

-- docbook stuff --

get toc printed in html mode. even while using nochunks mode.

license should be printed, see rh vs deb doc

--- mk stuff ---

- this whole thing could probably better use rsync, or, alternatively, all
  caspar functionality should be incorporated in cfengine, a tool for
  configuring and maintaining network machines.

- add support for sudo, rsync, install(1)

- The function $(subst -install,,$@) in caspar.mk breaks when filename itself
  has the substring -install.  We might have to use sed here, and strip only
  a _trailing_ '-install' from the maketarget.

- load stuff:
  - Add a better hook for the -load target: more generic please.
  - Create a ``load-recursive'' target.
  - supply daemons.mk: csp_SSHDEBIANLOAD csp_URUKREDHATLOAD , etc, to use
    in load targets

- The scp invocation is inefficient:

   % make -n README.txt-install net.txt-install
   scp "README.txt" pong:/data/www/doc/doc/;
   scp "net.txt" pong:/data/www/doc/doc/;

  Should be:

   scp "README.txt" "net.txt" pong:/data/www/doc/doc/;

  $@ vs $? might be helpful.

- Supply a script to convert Makefile in caspar < 20040531 style to >= 20040531
  style.

- Document the install-recursive target.

