public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Emmanuele Bassi (author)
Thu Apr 17 21:47:32 -0700 2008
commit  b45aeaed039e8d12419033a3884a02dc0ca4a8b9
tree    b7ef36f06fb5139a88c9b6f8cafc93b820ce26bf
parent  b7a26fb5bc22aa4b214b5fd0fd5ad6e7317f6796
tweet / src / Makefile.am
100644 49 lines (41 sloc) 1.049 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
NULL =
 
INCLUDES = \
  -DPREFIX=\""$(prefix)"\"        \
  -DLIBDIR=\""$(libdir)"\"        \
  -DDATADIR=\""$(datadir)"\"        \
  -DPKGDATADIR=\""$(datadir)/tweet"\"      \
  -DUIDATADIR=\""$(datadir)/gnome-2.0/ui"\"    \
  -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"  \
  $(NULL)
 
common_cflags = \
  -I$(top_srcdir) \
  -I$(top_srcdir)/twitter-glib \
  $(TWEET_CFLAGS)
  $(NULL)
 
common_ldadd = \
  $(top_builddir)/twitter-glib/libtwitter-glib-1.0.la \
  $(TWEET_LIBS) \
  $(NULL)
 
 
noinst_LTLIBRARIES = libtweet-ui.la
bin_PROGRAMS = tweet
 
libtweet_ui_la_SOURCES = \
  tweet-app.c \
  tweet-app.h \
  tweet-config.c \
  tweet-config.h \
  tweet-status-column.c \
  tweet-status-column.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-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