~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/Libraries/NRefactory/Project/Src/Parser/gen.sh

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@echo off
 
2
 
 
3
echo Generating with #Coco
 
4
 
 
5
cd Frames
 
6
 
 
7
cp ../CSharp/cs.ATG .
 
8
mono SharpCoco.exe -namespace ICSharpCode.NRefactory.Parser.CSharp cs.ATG
 
9
mv Parser.cs ../CSharp
 
10
 
 
11
cp ../VBNet/VBNET.ATG .
 
12
mono SharpCoco.exe -trace GIPXA -namespace ICSharpCode.NRefactory.Parser.VB VBNET.ATG
 
13
mv Parser.cs ../VBNet
 
14
 
 
15
rm cs.ATG
 
16
rm VBNET.ATG
 
17
 
 
18
cd ..