~ubuntu-branches/ubuntu/feisty/monodevelop/feisty

« back to all changes in this revision

Viewing changes to Extras/MonoDevelop.Autotools/Makefile.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-18 00:51:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060818005123-5iit07y0j7wjg55f
Tags: 0.11+svn20060818-0ubuntu1
* New SVN snapshot
  + Works with Gtk# 2.9.0
* debian/control:
  + Updated Build-Depends
* debian/patches/use_nunit2.2.dpatch,
  debian/patches/use_real_libs.dpatch:
  + Updated
* debian/patches/versioncontrol_buildfix.dpatch:
  + Fix build failure in the version control addin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Title:       Makefile.cs
 
2
// Author:      Scott Ellington <scott.ellington@gmail.com>
 
3
//
 
4
// Copyright (C) 2006 Scott Ellington and authors
 
5
//
 
6
// Permission is hereby granted, free of charge, to any person obtaining
 
7
// a copy of this software and associated documentation files (the
 
8
// "Software"), to deal in the Software without restriction, including
 
9
// without limitation the rights to use, copy, modify, merge, publish,
 
10
// distribute, sublicense, and/or sell copies of the Software, and to
 
11
// permit persons to whom the Software is furnished to do so, subject to
 
12
// the following conditions:
 
13
// 
 
14
// The above copyright notice and this permission notice shall be
 
15
// included in all copies or substantial portions of the Software.
 
16
// 
 
17
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
19
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
20
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
21
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
22
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
23
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
24
 
 
25
using System;
 
26
using System.IO;
 
27
using System.Text;
 
28
using System.Collections;
 
29
 
 
30
namespace MonoDevelop.Autotools
 
31
{
 
32
        public class Makefile
 
33
        {
 
34
                string content;
 
35
                
 
36
                Hashtable vars = new Hashtable ();
 
37
                
 
38
                public string GetVariable (string key)
 
39
                {
 
40
                        if ( vars.ContainsKey (key) ) return vars [key] as string;
 
41
                        return "";
 
42
                }
 
43
                        
 
44
                public void SetVariable (string key, string val)
 
45
                {
 
46
                        vars [key] = val;
 
47
                }
 
48
 
 
49
                public void AppendToVariable ( string key, string val )
 
50
                {
 
51
                        vars [key] += " " + val;
 
52
                }
 
53
                
 
54
                public void Append (string txt)
 
55
                {
 
56
                        content += "\n" + txt;
 
57
                }
 
58
                
 
59
                public void Write (TextWriter tw)
 
60
                {
 
61
                        StringBuilder sb = new StringBuilder ();
 
62
                        sb.Append ( "\n" );
 
63
                        foreach( DictionaryEntry de in vars )
 
64
                                sb.AppendFormat("{0} = {1}\n", de.Key, de.Value);
 
65
 
 
66
                        tw.Write ( content + sb.ToString() );
 
67
                }
 
68
        }
 
69
}