public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
tweet / src / Makefile.am
100644 132 lines (117 sloc) 3.063 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
NULL =
 
INCLUDES = \
  -DPREFIX=\""$(prefix)"\"        \
  -DLIBDIR=\""$(libdir)"\"        \
  -DDATADIR=\""$(datadir)"\"        \
  -DPKGDATADIR=\""$(datadir)/tweet"\"      \
  -DUIDATADIR=\""$(datadir)/gnome-2.0/ui"\"    \
  -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"  \
  -DG_DISABLE_DEPRECATED          \
  -DGDK_DISABLE_DEPRECATED        \
  -DGDK_PIXBUF_DISABLE_DEPRECATED        \
  -DGTK_DISABLE_DEPRECATED        \
  $(NULL)
 
common_cflags = \
  -I$(top_srcdir) \
  -I$(top_srcdir)/twitter-glib \
  -I$(top_srcdir)/copy-and-paste \
  $(TWEET_CFLAGS) \
  $(NMGLIB_CFLAGS) \
  $(NULL)
 
common_ldadd = \
  $(top_builddir)/twitter-glib/libtwitter-glib-1.0.la \
  $(top_builddir)/copy-and-paste/tidy/libtidy.la \
  $(TWEET_LIBS) \
  $(NMGLIB_LIBS) \
  $(NULL)
 
 
noinst_LTLIBRARIES = libtweet-ui.la
bin_PROGRAMS = tweet
 
tweet_h = \
  tweet-animation.h \
  tweet-app.h \
  tweet-auth-dialog.h \
  tweet-canvas.h \
  tweet-config.h \
  tweet-hot-actor.h \
  tweet-interval.h \
  tweet-overlay.h \
  tweet-preferences.h \
  tweet-spinner.h \
  tweet-status-cell.h \
  tweet-status-column.h \
  tweet-status-info.h \
  tweet-status-model.h \
  tweet-status-renderer.h \
  tweet-status-view.h \
  tweet-url-label.h \
  tweet-utils.h \
  tweet-window.h \
  $(NULL)
 
tweet-enum-types.h: stamp-tweet-enum-types.h
  @true
stamp-tweet-enum-types.h: $(tweet_h) Makefile
  ( cd $(top_srcdir)/src && \
   $(GLIB_MKENUMS) \
    --template $(top_srcdir)/src/tweet-enum-types.h.in \
   $(tweet_h) ) > xgen-ceth \
  && (cmp xgen-ceth tweet-enum-types.h || cp xgen-ceth tweet-enum-types.h) \
  && rm -f xgen-ceth \
  && echo timestamp > $(@F)
 
tweet-enum-types.c: tweet-enum-types.h
  ( cd $(top_srcdir)/src && \
   $(GLIB_MKENUMS) \
    --template $(top_srcdir)/src/tweet-enum-types.c.in \
   $(tweet_h) ) > xgen-cetc \
  && cp xgen-cetc tweet-enum-types.c \
  && rm -f xgen-cetc
 
BUILT_SOURCES = tweet-enum-types.h tweet-enum-types.c
 
libtweet_ui_la_SOURCES = \
  tweet-animation.c \
  tweet-animation.h \
  tweet-app.c \
  tweet-app.h \
  tweet-auth-dialog.c \
  tweet-auth-dialog.h \
  tweet-canvas.c \
  tweet-canvas.h \
  tweet-config.c \
  tweet-config.h \
  tweet-enum-types.c \
  tweet-enum-types.h \
  tweet-hot-actor.c \
  tweet-hot-actor.h \
  tweet-interval.c \
  tweet-interval.h \
  tweet-overlay.c \
  tweet-overlay.h \
  tweet-preferences.c \
  tweet-preferences.h \
  tweet-spinner.c \
  tweet-spinner.h \
  tweet-status-cell.c \
  tweet-status-cell.h \
  tweet-status-column.c \
  tweet-status-column.h \
  tweet-status-info.c \
  tweet-status-info.h \
  tweet-status-model.c \
  tweet-status-model.h \
  tweet-status-renderer.c \
  tweet-status-renderer.h \
  tweet-status-view.c \
  tweet-status-view.h \
  tweet-url-label.c \
  tweet-url-label.h \
  tweet-utils.c \
  tweet-utils.h \
  tweet-window.c \
  tweet-window.h \
  $(NULL)
libtweet_ui_la_CFLAGS = $(common_cflags)
libtweet_ui_la_LIBADD = $(common_ldadd)
 
tweet_SOURCES = tweet-main.c
tweet_CFLAGS = $(common_cflags)
tweet_LDADD = $(common_ldadd) libtweet-ui.la
 
CLEANFILES = stamp-tweet-enum-types.h
 
DISTCLEANFILES = tweet-enum-types.h tweet-enum-types.c
 
EXTRA_DIST = tweet-enum-types.c.in tweet-enum-types.h.in