Overview
Comment: | Added build-doc target. Separated cc/parse_m2cc.cc from rest of install - not binary independent. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fbf2734230e3fb5e96158be077687351 |
User & Date: | geraint@users.sourceforge.net on 2002-04-27 21:50:32 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-28
| ||
00:14:15 | install mtt with correct name in /usr/bin check-in: ec13176e30 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-04-27
| ||
21:50:32 |
Added build-doc target. Separated cc/parse_m2cc.cc from rest of install - not binary independent. check-in: fbf2734230 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
21:07:49 | remove xmtt as well as mtt when cleaning. check-in: 64dbd186b6 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/Makefile from [b623ab6378] to [cd92c40885].
︙ | ︙ | |||
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 37 38 39 40 | INFODIR=$(DESTDIR)/usr/share/info configure: configure-stamp configure-stamp: @touch configure-stamp build: configure mtt.sh build-stamp @cd cc ; make -s build build-stamp: @touch build-stamp clean: @touch clean.sh @-chmod a+x clean.sh @./clean.sh @rm -f clean.sh clean-conf: @touch clean-conf.sh @-chmod a+x clean-conf.sh @./clean-conf.sh @rm -f clean-conf.sh clean-doc: @touch clean-doc.sh @-chmod a+x clean-doc.sh @./clean-doc.sh @rm -f clean-doc.sh @cd doc ; make -s clean | > > > > > > > > > > > > | | > > > | > > > > > | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | INFODIR=$(DESTDIR)/usr/share/info configure: configure-stamp configure-stamp: @touch configure-stamp build: configure mtt.sh build-stamp build-cc: @cd cc ; make -s build build-doc: @cd doc ; make -s all build-stamp: @touch build-stamp clean: @touch clean.sh @-chmod a+x clean.sh @./clean.sh @rm -f clean.sh clean-cc: @touch clean-cc.sh @-chmod a+x clean-cc.sh @./clean-cc.sh @rm -f clean-cc.sh clean-conf: @touch clean-conf.sh @-chmod a+x clean-conf.sh @./clean-conf.sh @rm -f clean-conf.sh clean-doc: @touch clean-doc.sh @-chmod a+x clean-doc.sh @./clean-doc.sh @rm -f clean-doc.sh @cd doc ; make -s clean distclean: clean clean-cc clean-conf clean-doc @-rm -f build-stamp configure-stamp config.log mtt.sh install: build clean.sh clean-conf.sh @install -d $(INSTDIR) $(CONFDIR) $(PROGDIR) @install -d $(INSTDIR)/bin $(INSTDIR)/cc $(INSTDIR)/lib @install bin/mttrc $(CONFDIR)/mtt.conf @install mtt.sh bin/xmtt $(PROGDIR) install-cc: build-cc clean-cc.sh @install -d $(INSTDIR)/bin/trans @install cc/parse_m2cc.exe $(INSTDIR)/bin/trans install-doc: build-doc clean-doc.sh @install -d $(DOCDIR) $(INFODIR) @cd doc ; DOCPATH=$(DOCDIR) INFOPATH=$(INFODIR) make -s install-doc .PHONY: FORCE clean.sh: FORCE @echo '#! /bin/sh' >>clean.sh @echo '# This file is auto-generated - do not edit' >>clean.sh @echo 'rm -f $(PROGDIR)/mtt $(PROGDIR)/xmtt' >>clean.sh @echo 'rm -fr $(INSTDIR)' >>clean.sh clean-cc.sh: FORCE @echo '#! /bin/sh' >>clean-cc.sh @echo '# This file is auto-generated - do not edit' >>clean-cc.sh @echo 'rm -f $(INSTDIR)/bin/trans/parse_m2cc.exe' >>clean-cc.sh clean-conf.sh: FORCE @echo '#! /bin/sh' >>clean-conf.sh @echo '# This file is auto-generated - do not edit' >>clean-conf.sh @echo 'rm -f $(CONFDIR)/mtt.conf' >>clean-conf.sh clean-doc.sh: FORCE @echo '#! /bin/sh' >>clean-doc.sh |
︙ | ︙ |