Overview
Comment: | Separated removal of conf file from normal clean procedure. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f7db844de8733188e821f14b5bd791e2 |
User & Date: | geraint@users.sourceforge.net on 2002-04-27 12:45:44 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-27
| ||
21:05:53 | install xmtt alongside mtt in /usr/bin check-in: 804054372b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
12:45:44 | Separated removal of conf file from normal clean procedure. check-in: f7db844de8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
11:13:04 |
Now builds targets in cc directory. Now correctly cleans doc directory. Uses /usr/bin/install instead of cp, mkdir and chmod. check-in: b9b4e2be07 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/Makefile from [53e71ab212] to [a4feb6a5c4].
︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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 | + + + + + + - + - + + + + + | 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 |
︙ |