Overview
Comment: | Allow variables to be set outside Makefile. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c0886deb6a6b4ca65f221bd06921050a |
User & Date: | geraint@users.sourceforge.net on 2002-04-26 17:17:20 |
Other Links: | branch diff | manifest | tags |
Context
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 | |
16:16:33 | Removed unnecessary variables PLAT and GCCVERS. check-in: 08d8e1b4db user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/doc/Makefile from [bc1a16d4f1] to [b2004c5a74].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #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 | > > > | | | | | | 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 |
︙ | ︙ |