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
27
28
29
30
31
32
33
|
#Makefile for MTT documentation
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2 1998/07/02 18:40:07 peterg
## More on install option
##
## Revision 1.1 1998/05/14 09:19:52 peterg
## Initial revision
##
###############################################################
#MTTPATH = /home/peterg/mtt_new/mtt
#DOCPATH = /home/peterg/web-docs/software/MTT/doc
#INFOPATH = /usr/info
MTTPATH = /home/peterg/mtt_new/mtt
MTT_COMPONENTS = /home/eng4/peterg/mtt_new/mtt/lib/comp
MTT_EXAMPLES = /home/eng4/peterg/mtt_new/mtt/lib/examples
DOCPATH = /home/peterg/web-docs/software/MTT/doc
#INFOPATH = $(DOCPATH)
INFOPATH = /usr/info
all: mtt.info mtt.html mtt.pdf mtt.ps.gz
mtt.info: mtt.texi
echo "Making info manual. Please wait ..."; makeinfo mtt.texi
mtt.dvi: mtt.texi
|
>
>
>
|
|
|
|
|
|
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
27
28
29
30
31
32
33
34
35
36
|
#Makefile for MTT documentation
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## 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
## Initial revision
##
###############################################################
#MTTPATH = /home/peterg/mtt_new/mtt
#DOCPATH = /home/peterg/web-docs/software/MTT/doc
#INFOPATH = /usr/info
MTTPATH ?= /home/peterg/mtt_new/mtt
MTT_COMPONENTS ?= /home/eng4/peterg/mtt_new/mtt/lib/comp
MTT_EXAMPLES ?= /home/eng4/peterg/mtt_new/mtt/lib/examples
DOCPATH ?= /home/peterg/web-docs/software/MTT/doc
#INFOPATH = $(DOCPATH)
INFOPATH ?= /usr/info
all: mtt.info mtt.html mtt.pdf mtt.ps.gz
mtt.info: mtt.texi
echo "Making info manual. Please wait ..."; makeinfo mtt.texi
mtt.dvi: mtt.texi
|