1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# This is the main file for generating the xmds man pages and
# putting the output into the xmds-devel tree for distribution
# with xmds. To use this file, the program aap must be installed.
# If it is not installed, go to http://www.a-a-p.org/ and install
# the relevant software
# $Id: main.aap 1195 2006-12-18 13:00:35Z paultcochrane $
# generating the xmds man pages
:print Generating the xmds man pages
manFiles = xmds.1
xsil2graphics.1
loadxsil.1
develManDir = /home/cochrane/sourceforge/xmds-devel/man/
all: $manFiles dist
:rule %.1 : %.pod
:sys pod2man $source > $target
dist: $manFiles
:print Copying the man pages to the devel tree
:sys cp *.1 $develManDir
|