HOW TO MAKE A PDF FROM a MANPAGE

$ man -t -l file.1 > file.ps
$ pstopdf file.ps




MAKE A DISTRIBUTION:

Generated from trunk with

autoconf
./configure --prefix=$HOME/opal/opt/ocsroot1
ocs  # (this is ocs-2.3m, i.e. system's compiler)


Then copy

cd compiled
tar cf - ../trunk | tar xf -

(we use tar to not mess up time stamps)


Then cleaned:


Delete executables

cut -d: -f1 < ../../DELETE.exe | xargs rm



Delete object files
Delete archive files

find . -name \*.o -exec rm {} \;
find . -name \*.a -exec rm {} \;

delete OcsDefs-SysDefs (but not those needed to build genmake and prerequisites!)

for f in `cat ../../DELETE.ocsdefs`; do rm $f; done


delete OCS dirs (not all!)

for f in `cat ../../DELETE.OCS`; do rm -r $f; done



Now try to build

DISABLE SYSTEM OCS!

unset OCS
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games

clean install dest.
rm -rf $HOME/opal/opt/ocsroot2/*

./configure --prefix=$HOME/opal/opt/ocsroot2 --disable-locallinks



make install
