~iwarford/do-plugins/inline-google-fix

« back to all changes in this revision

Viewing changes to Twitter/Makefile.am

  • Committer: Alex Launi
  • Date: 2008-07-01 20:02:42 UTC
  • mfrom: (151.1.24 do-plugins)
  • Revision ID: alex@eriktorvaldsonn-20080701200242-l85j12hkp0os19tb
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
endif
30
30
 
31
 
if ENABLE_REPO
32
 
ASSEMBLY_COMPILER_COMMAND = gmcs
33
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
34
 
 
35
 
ASSEMBLY = bin/Debug/Twitter.dll
36
 
ASSEMBLY_MDB = $(ASSEMBLY).mdb
37
 
COMPILE_TARGET = library
38
 
PROJECT_REFERENCES = 
39
 
BUILD_DIR = bin/Debug
40
 
 
41
 
 
42
 
endif
43
 
 
44
31
AL=al2
45
 
SATELLITE_ASSEMBLY_NAME=.resources.dll
 
32
SATELLITE_ASSEMBLY_NAME=DoTwitter.resources.dll
46
33
 
47
34
LINUX_PKGCONFIG = \
48
35
        $(TWITTER_PC)  
52
39
all: $(ASSEMBLY) $(LINUX_PKGCONFIG) 
53
40
 
54
41
FILES = \
55
 
        src/Notifications.cs \
56
 
        src/Twitter.cs \
57
 
        src/TwitterAction.cs 
 
42
        src/Configuration.cs \
 
43
        src/TwitterAction.cs \
 
44
        src/TwitterFriendSource.cs \
 
45
        src/TwitterTweet.cs \
 
46
        src/Twitterizer/Twitter.cs \
 
47
        src/Twitterizer/TwitterizerException.cs \
 
48
        src/Twitterizer/TwitterRequest.cs \
 
49
        src/Twitterizer/TwitterRequestData.cs \
 
50
        src/Twitterizer/TwitterStatus.cs \
 
51
        src/Twitterizer/TwitterStatusCollection.cs \
 
52
        src/Twitterizer/TwitterUser.cs \
 
53
        src/Twitterizer/TwitterUserCollection.cs \
 
54
        src/Twitterizer/Properties/AssemblyInfo.cs \
 
55
        gtk-gui/generated.cs \
 
56
        src/GenConfig.cs \
 
57
        gtk-gui/DoTwitter.GenConfig.cs 
58
58
 
59
59
DATA_FILES = 
60
60
 
61
61
RESOURCES = \
62
 
        twitter-icon.png 
 
62
        Twitter.addin.xml \
 
63
        twitter-icon.png \
 
64
        twitter_items.png \
 
65
        gtk-gui/gui.stetic \
 
66
        gtk-gui/objects.xml 
63
67
 
64
68
EXTRAS = \
65
69
        twitter.pc.in 
66
70
 
67
71
REFERENCES =  \
68
72
        $(DOADDINS_LIBS) \
 
73
        $(GTK_SHARP_20_LIBS) \
69
74
        System \
70
 
        $(NDESK_DBUS_GLIB_10_LIBS) \
71
 
        $(NDESK_DBUS_10_LIBS) \
72
75
        System.Xml \
73
 
        $(GCONF_SHARP_20_LIBS)
 
76
        System.Web \
 
77
        Mono.Posix
74
78
 
75
79
DLL_REFERENCES = 
76
80