Overview
Comment: | Removed the -u switch from cp - it doesnt work on non GNU cps |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
af89bafffae5fd131a7ac4721fc57b22 |
User & Date: | gawthrop@users.sourceforge.net on 1999-08-17 04:10:38 |
Other Links: | branch diff | manifest | tags |
Context
1999-08-18
| ||
06:15:48 | Stripped down to just representations menu - see mtt_make_menu check-in: 60ea7e4abf user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-08-17
| ||
04:10:38 | Removed the -u switch from cp - it doesnt work on non GNU cps check-in: af89bafffa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-08-06
| ||
06:58:44 | Initial revision check-in: 2c06c91a10 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [a9ba6a260f] to [d348fd52c1].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.209 1999/07/27 03:50:13 peterg ## Fixed odeo.p bug. ## Fixed compound object bug in fig. ## ## Revision 1.208 1999/07/20 23:43:05 peterg ## V 3.8 ( to Eric) ## | > > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997,1998,1999 ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.210 1999/08/02 12:52:12 peterg ## Removed redundant .p copying. ## ## Revision 1.209 1999/07/27 03:50:13 peterg ## Fixed odeo.p bug. ## Fixed compound object bug in fig. ## ## Revision 1.208 1999/07/20 23:43:05 peterg ## V 3.8 ( to Eric) ## |
︙ | ︙ | |||
1261 1262 1263 1264 1265 1266 1267 | if [ -n "$DIFF" ]; then mv $1_args.new $1_args.m fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work | | | 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | if [ -n "$DIFF" ]; then mv $1_args.new $1_args.m fi # Tidy mode - operate in the directory MTT-work if [ "$tidy" = "tidy" ]; then mkdir -p MTT_work cp -p Makefile *.* .* MTT_work # 2>/dev/null cd MTT_work if [ -z "$directory" ]; then Directory='' else Directory=$directory/MTT_work fi |
︙ | ︙ | |||
1287 1288 1289 1290 1291 1292 1293 | if [ "$3" != "hview" ]; then if [ "$3" = "html" ]; then echo Moving $1_$2 mv $1_$2 .. else echo Copying $1_$2.$3 | | | 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 | if [ "$3" != "hview" ]; then if [ "$3" = "html" ]; then echo Moving $1_$2 mv $1_$2 .. else echo Copying $1_$2.$3 cp -p $1_$2.$3 .. fi if [ "$PLOTTYPE" = "multiple" ]; then echo Copying $1_$2$__ARGS.ps cp $1_$2$__ARGS.ps .. fi fi |
︙ | ︙ | |||
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 | # Create an arg file if it doesn't exist $1_args.m: touch $1_args.m #Create skeleton files (with titles) if not already there #SUMMARY lbl label file (txt) $1_lbl.txt: abg2lbl_fig2txt $1 $1_lbl.tex: $1_lbl.txt lbl_txt2tex $1 #SUMMARY alias name aliases for each subsystem (txt) | > > > > > | 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 | # Create an arg file if it doesn't exist $1_args.m: touch $1_args.m #Create skeleton files (with titles) if not already there #SUMMARY lbl* label file (txt) #SUMMARY lbl label file (txt) #SUMMARY lbl* label file (view) #SUMMARY lbl label file (view) #SUMMARY lbl* label file (tex) #SUMMARY lbl label file (tex) $1_lbl.txt: abg2lbl_fig2txt $1 $1_lbl.tex: $1_lbl.txt lbl_txt2tex $1 #SUMMARY alias name aliases for each subsystem (txt) |
︙ | ︙ |