Take the 2008 Git User's Survey and help out! [ hide ]

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)
Fri Apr 18 02:21:03 -0700 2008
commit  455bcf01d7cb8a5c84630024c693349a9c06dafe
tree    2eca12004870287376467b447dbfefccf872cc47
parent  72ff55611b6b5df82e6d7a270c279644c7ba252b
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