I am missing some features for "make install". Right now there is no way to
make ONLY Parrot and skip examples or docs.
I would like to have something like this:
all: parrot examples docs
parrot:
<instructions here>
examples:
<instructions here>
docs:
<instructions here>
So I could do this:
make parrot
make examples
make install
Even better would be a "make doc-install" (make html-install ?) to install the
docs in a different location i.e. /usr/share/packages/parrot/ .
Adrian Lambeck