~ubuntu-branches/ubuntu/dapper/cdrdao/dapper

« back to all changes in this revision

Viewing changes to pccts/installPPC.mpw

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2005-12-10 22:52:11 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051210225211-rn7q0g36wlbc9a3r
Tags: 1:1.2.1-2ubuntu1
* Resynchronise with debian (orig. debian package)
* Merged debian/changelog to mention ubuntu uploads
* Re-Applied Michael Vogts patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#       File name               installPPC.mpw 
2
 
#
3
 
#       Description             This script builds PPC version of antlr, dlg and sor.
4
 
#                                       and install them into Tools folder in your MPW.
5
 
#                                       They have commando interfaces.
6
 
#
7
 
#       Installation    Set Directory to the directory containing this file.
8
 
#                                       Enter "installPPC.mpw" and press enter key.
9
 
#
10
 
#   Requirements        MrC(for PPC) compiler
11
 
#                                       http://developer.apple.com/dev/tools/mpw-tools/compilers/index.html
12
 
#
13
 
#       Author                  Kenji Tanaka (kentar@osa.att.ne.jp)
14
 
#                                       http://www.geocities.com/SiliconValley/Platform/5502/pccts
15
 
#       Created                 06/16/98
16
 
#       Modified                12/14/98
17
 
 
18
 
Echo "# `Date -t` ----- Building PPC version of PCCTS tools."
19
 
 
20
 
# Make 'Macintosh' folders to hold object files.
21
 
 
22
 
Echo "# `Date -t` -----   Making Object File Folders."
23
 
If (!`exists :dlg:Obj:`)
24
 
  NewFolder :dlg:Obj:
25
 
End
26
 
If (!`exists :antlr:Obj:`)
27
 
  NewFolder :antlr:Obj:
28
 
End
29
 
If (!`exists :sorcerer:Obj:`)
30
 
  NewFolder :sorcerer:Obj:
31
 
End
32
 
 
33
 
Echo "# `Date -t` -----   Done."
34
 
Echo "#"
35
 
 
36
 
# DLG build commands
37
 
 
38
 
Echo "# `Date -t` -----   Building DLG."
39
 
Echo "# `Date -t` -----     Analyzing dependencies."
40
 
Directory :dlg:
41
 
Begin
42
 
        Echo "Set Echo 1"
43
 
        Make Install -f dlgPPC.make
44
 
End > dlg.makeout
45
 
Echo "# `Date -t` -----     Executing build commands."
46
 
dlg.makeout
47
 
Delete dlg.makeout
48
 
Delete -y Obj           
49
 
 
50
 
Echo "# `Date -t` -----   Done."
51
 
Echo "#"
52
 
Directory ::
53
 
 
54
 
# ANTLR build commands
55
 
 
56
 
Echo "# `Date -t` -----   Building ANTLR."
57
 
Echo "# `Date -t` -----     Analyzing dependencies."
58
 
Directory :antlr:
59
 
Begin
60
 
        Echo "Set Echo 1"
61
 
        Make Install -f antlrPPC.make
62
 
End > antlr.makeout
63
 
antlr.makeout
64
 
Delete antlr.makeout
65
 
Delete -y Obj
66
 
Echo "# `Date -t` -----   Done."
67
 
Echo "#"
68
 
Directory ::
69
 
 
70
 
# SORCERER build commands
71
 
 
72
 
Echo "# `Date -t` -----   Building SORCERER."
73
 
Echo "# `Date -t` -----     Analyzing dependencies."
74
 
Directory :sorcerer:
75
 
Begin
76
 
        Echo "Set Echo 1"
77
 
        Make Install -f sorPPC.make
78
 
End > sorcerer.makeout
79
 
sorcerer.makeout
80
 
Delete sorcerer.makeout
81
 
Delete -y Obj
82
 
Echo "# `Date -t` -----   Done."
83
 
Echo "#"
84
 
Directory ::
85
 
 
86
 
 
87
 
# Done
88
 
 
89
 
Echo "# `Date -t` ----- Done Building PPC version of PCCTS tools."