1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
+
+
+
|
#Makefile for MTT documentation
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 2002/04/26 17:17:20 geraint
## Allow variables to be set outside Makefile.
##
## Revision 1.1 2001/06/04 08:18:52 gawthrop
## Putting documentation under CVS
##
## Revision 1.2 1998/07/02 18:40:07 peterg
## More on install option
##
## Revision 1.1 1998/05/14 09:19:52 peterg
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-
+
|
rm -f mtt.cp mtt.pgs mtt.vr
rm -f mtt.cps mtt.vrs mtt.dvi
rm -f mtt.log mtt.ky mtt.toc
install-doc: mtt.html mtt.ps.gz mtt.info
cp mtt.info* $(INFOPATH)
cp mtt.html mtt_toc.html mtt.ps.gz $(DOCPATH)
cp mtt*.html mtt.ps.gz $(DOCPATH)
chmod -R a+r $(DOCPATH)
chmod a+x $(DOCPATH)
install-components: Compound-Components_rep.ps Compound-Components_rep
mv Compound-Components_rep.ps $(DOCPATH)/../components
mv Compound-Components_rep $(DOCPATH)/../components
chmod -R a+r $(DOCPATH)/../components
chmod -R a+x $(DOCPATH)/../components/Compound-Components_re
|