public
Description: A Clutter-based Twitter client
Homepage: http://live.gnome.org/Tweet
Clone URL: git://github.com/ebassi/tweet.git
Search Repo:
Emmanuele Bassi (author)
Sat Apr 19 07:29:41 -0700 2008
commit  a643edaaa7ba328cf4f24356dbeb5c2faa5837e3
tree    a002d1ab1d3439fcbbd514ce3b803f4d8e216866
parent  455bcf01d7cb8a5c84630024c693349a9c06dafe
tweet / src / Makefile.am
100644 48 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
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