~iwarford/do-plugins/autofoo

« back to all changes in this revision

Viewing changes to Microblogging/Makefile.am

  • Committer: Christopher Halse Rogers
  • Date: 2009-01-05 01:29:09 UTC
  • Revision ID: raof@ubuntu.com-20090105012909-wazczkbdvhmpnobc
MoreĀ builds

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
EXTRA_DIST =  
3
 
 
4
 
# Warning: This is an automatically generated file, do not edit!
5
 
 
6
 
if ENABLE_DEBUG
7
 
ASSEMBLY_COMPILER_COMMAND = gmcs
8
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
9
 
ASSEMBLY = bin/Debug/Twitter.dll
10
 
ASSEMBLY_MDB = $(ASSEMBLY).mdb
11
 
COMPILE_TARGET = library
12
 
PROJECT_REFERENCES = 
13
 
BUILD_DIR = bin/Debug
14
 
 
15
 
TWITTER_DLL_MDB_SOURCE=bin/Debug/Twitter.dll.mdb
16
 
TWITTER_DLL_MDB=$(BUILD_DIR)/Twitter.dll.mdb
17
 
 
18
 
endif
19
 
 
20
 
if ENABLE_RELEASE
21
 
ASSEMBLY_COMPILER_COMMAND = gmcs
22
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+
23
 
ASSEMBLY = bin/Release/Twitter.dll
24
 
ASSEMBLY_MDB = 
25
 
COMPILE_TARGET = library
26
 
PROJECT_REFERENCES = 
27
 
BUILD_DIR = bin/Release
28
 
 
29
 
TWITTER_DLL_MDB=
30
 
 
31
 
endif
32
 
 
33
 
AL=al2
34
 
SATELLITE_ASSEMBLY_NAME=$(notdir $(basename $(ASSEMBLY))).resources.dll
35
 
 
36
 
PROGRAMFILES = \
37
 
        $(TWITTER_DLL_MDB)  
38
 
 
39
 
LINUX_PKGCONFIG = \
40
 
        $(TWITTER_PC)  
41
 
 
42
 
 
43
 
RESGEN=resgen2
44
 
        
45
 
all: $(ASSEMBLY) $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
46
 
 
47
 
FILES = \
48
 
        src/Configuration.cs \
49
 
        src/TwitterAction.cs \
50
 
        src/TwitterFriendSource.cs \
51
 
        src/TwitterTweet.cs \
52
 
        gtk-gui/generated.cs \
53
 
        src/GenConfig.cs \
54
 
        gtk-gui/DoTwitter.GenConfig.cs \
55
 
        src/Twitterizer/Twiterizer.Framework/Twitter.cs \
56
 
        src/Twitterizer/Twiterizer.Framework/TwitterizerException.cs \
57
 
        src/Twitterizer/Twiterizer.Framework/TwitterRequest.cs \
58
 
        src/Twitterizer/Twiterizer.Framework/TwitterRequestData.cs \
59
 
        src/Twitterizer/Twiterizer.Framework/TwitterStatus.cs \
60
 
        src/Twitterizer/Twiterizer.Framework/TwitterStatusCollection.cs \
61
 
        src/Twitterizer/Twiterizer.Framework/TwitterUser.cs \
62
 
        src/Twitterizer/Twiterizer.Framework/TwitterUserCollection.cs \
63
 
        src/Twitterizer/Twiterizer.Framework/Properties/AssemblyInfo.cs 
64
 
 
65
 
DATA_FILES = 
 
1
include $(top_srcdir)/build.rules.mk
 
2
 
 
3
ASSEMBLY=Microblog
 
4
 
 
5
# Spaces suck for autofoo, so we need to handle this differently
 
6
MCS_FLAGS += -recurse:*.cs
66
7
 
67
8
RESOURCES = \
68
 
        Twitter.addin.xml \
 
9
        gtk-gui/gui.stetic \
 
10
        gtk-gui/objects.xml \
 
11
        Microblogging.addin.xml \
69
12
        twitter-icon.png \
70
 
        twitter_items.png \
71
 
        gtk-gui/gui.stetic \
72
 
        gtk-gui/objects.xml 
73
 
 
74
 
EXTRAS = \
75
 
        src/Twitterizer/Twiterizer.Framework/Twitterizer.Framework.csproj \
76
 
        twitter.pc.in 
77
 
 
78
 
REFERENCES =  \
79
 
        Do.Addins \
80
 
        $(GTK_SHARP_20_LIBS) \
 
13
        twitter_items.png
 
14
 
 
15
REFERENCES = \
 
16
        Mono.Posix \
81
17
        System \
 
18
        System.Core \
 
19
        System.Web \
82
20
        System.Xml \
83
 
        System.Web \
84
 
        Mono.Posix \
85
 
        System.Configuration
86
 
 
87
 
DLL_REFERENCES = 
88
 
 
89
 
CLEANFILES = $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
90
 
 
91
 
include $(top_srcdir)/Makefile.include
92
 
 
93
 
TWITTER_PC = $(BUILD_DIR)/twitter.pc
94
 
 
95
 
$(eval $(call emit-deploy-wrapper,TWITTER_PC,twitter.pc))
96
 
 
97
 
 
98
 
$(eval $(call emit_resgen_targets))
99
 
$(build_xamlg_list): %.xaml.g.cs: %.xaml
100
 
        xamlg '$<'
101
 
 
102
 
$(ASSEMBLY) $(ASSEMBLY_MDB): $(build_sources) $(build_resources) $(build_datafiles) $(DLL_REFERENCES) $(PROJECT_REFERENCES) $(build_xamlg_list) $(build_satellite_assembly_list)
103
 
        mkdir -p $(shell dirname $(ASSEMBLY))
104
 
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$(ASSEMBLY) -target:$(COMPILE_TARGET) $(build_sources_embed) $(build_resources_embed) $(build_references_ref)
 
21
        $(GTK_SHARP_20_LIBS) \
 
22
        $(DO_PLATFORM_LINUX_LIBS) \
 
23
        $(DO_UNIVERSE_LIBS)