Overview
Comment: | Fixed path to info files for "mtt info". |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fd9b1c804e93a5ad00097118dfd140e7 |
User & Date: | geraint@users.sourceforge.net on 2002-04-26 23:19:00 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-27
| ||
00:23:40 |
Makefile -- initial version.
usage: [DESTDIR=/prefix/path] make install install-doc | |
2002-04-26
| ||
23:19:00 | Fixed path to info files for "mtt info". check-in: fd9b1c804e user: geraint@users.sourceforge.net tags: origin/master, trunk | |
17:17:20 | Allow variables to be set outside Makefile. check-in: c0886deb6a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [688ae9a121] to [0fc79c2700].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.330 2002/04/17 10:03:12 geraint ## Marked .sg as a major representation. ## ## Revision 1.329 2002/04/16 14:58:00 gawthrop ## mtt copy does NOT now copy the CVS directory ## $directory --> ${directory} (just to be tidy) ## | > > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.331 2002/04/19 09:24:29 gawthrop ## 2 changes to ode2odes_out generation: only compiles the specified c ## file; outside the computation=c clause ## ## Revision 1.330 2002/04/17 10:03:12 geraint ## Marked .sg as a major representation. ## ## Revision 1.329 2002/04/16 14:58:00 gawthrop ## mtt copy does NOT now copy the CVS directory ## $directory --> ${directory} (just to be tidy) ## |
︙ | ︙ | |||
1446 1447 1448 1449 1450 1451 1452 | echo ' --versions print version of mtt and components and exit' exit fi fi if [ "$1" = "info" ] && [ "$3" = "" ]; then | | | | 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 | echo ' --versions print version of mtt and components and exit' exit fi fi if [ "$1" = "info" ] && [ "$3" = "" ]; then (cd $MTT_DOC ; make --silent mtt.info) echo "Invoking info in xterm" xterm -e info -f $MTT_DOC/mtt.info $2 exit fi if [ "$1" = "help" ]; then mtt_help $2 $3 exit fi |
︙ | ︙ |