~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Twitter/Makefile.am

  • Committer: Christopher Halse Rogers
  • Date: 2008-08-24 08:44:24 UTC
  • mfrom: (244.1.2 do-plugins)
  • Revision ID: raof@ubuntu.com-20080824084424-8gp5ff6v9nku9z21
Merge in the tip of 0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
EXTRA_DIST =  
 
3
 
 
4
 
 
5
 
 
6
if ENABLE_DEBUG
 
7
ASSEMBLY_COMPILER_COMMAND = gmcs
 
8
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
 
9
 
 
10
ASSEMBLY = bin/Debug/Twitter.dll
 
11
ASSEMBLY_MDB = $(ASSEMBLY).mdb
 
12
COMPILE_TARGET = library
 
13
PROJECT_REFERENCES = 
 
14
BUILD_DIR = bin/Debug
 
15
 
 
16
 
 
17
endif
 
18
 
 
19
if ENABLE_RELEASE
 
20
ASSEMBLY_COMPILER_COMMAND = gmcs
 
21
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+
 
22
ASSEMBLY = bin/Release/Twitter.dll
 
23
ASSEMBLY_MDB = 
 
24
COMPILE_TARGET = library
 
25
PROJECT_REFERENCES = 
 
26
BUILD_DIR = bin/Release
 
27
 
 
28
 
 
29
endif
 
30
 
 
31
AL=al2
 
32
SATELLITE_ASSEMBLY_NAME=DoTwitter.resources.dll
 
33
 
 
34
all: $(ASSEMBLY) 
 
35
 
 
36
FILES = \
 
37
        gtk-gui/DoTwitter.GenConfig.cs \
 
38
        gtk-gui/generated.cs \
 
39
        src/Configuration.cs \
 
40
        src/GenConfig.cs \
 
41
        src/TwitterAction.cs \
 
42
        src/TwitterFriendSource.cs \
 
43
        src/TwitterTweet.cs \
 
44
        src/Twitterizer/Twiterizer.Framework/Properties/AssemblyInfo.cs \
 
45
        src/Twitterizer/Twiterizer.Framework/Twitter.cs \
 
46
        src/Twitterizer/Twiterizer.Framework/TwitterizerException.cs \
 
47
        src/Twitterizer/Twiterizer.Framework/TwitterRequest.cs \
 
48
        src/Twitterizer/Twiterizer.Framework/TwitterRequestData.cs \
 
49
        src/Twitterizer/Twiterizer.Framework/TwitterStatusCollection.cs \
 
50
        src/Twitterizer/Twiterizer.Framework/TwitterStatus.cs \
 
51
        src/Twitterizer/Twiterizer.Framework/TwitterUserCollection.cs \
 
52
        src/Twitterizer/Twiterizer.Framework/TwitterUser.cs
 
53
 
 
54
DATA_FILES = 
 
55
 
 
56
RESOURCES = \
 
57
        Twitter.addin.xml \
 
58
        twitter-icon.png \
 
59
        twitter_items.png \
 
60
        gtk-gui/gui.stetic \
 
61
        gtk-gui/objects.xml 
 
62
 
 
63
REFERENCES =  \
 
64
        $(DOADDINS_LIBS) \
 
65
        $(GTK_SHARP_20_LIBS) \
 
66
        System \
 
67
        System.Xml \
 
68
        System.Web \
 
69
        Mono.Posix
 
70
 
 
71
DLL_REFERENCES = 
 
72
 
 
73
CLEANFILES = 
 
74
 
 
75
include $(top_srcdir)/Makefile.include
 
76
 
 
77
 
 
78
$(build_xamlg_list): %.xaml.g.cs: %.xaml
 
79
        xamlg '$<'
 
80
 
 
81
$(build_resx_resources) : %.resources: %.resx
 
82
        resgen2 '$<' '$@'
 
83
 
 
84
$(ASSEMBLY) $(ASSEMBLY_MDB): $(build_sources) $(build_resources) $(build_datafiles) $(DLL_REFERENCES) $(PROJECT_REFERENCES) $(build_xamlg_list) $(build_satellite_assembly_list)
 
85
        mkdir -p $(dir $(ASSEMBLY))
 
86
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$(ASSEMBLY) -target:$(COMPILE_TARGET) $(build_sources_embed) $(build_resources_embed) $(build_references_ref)