File: Makefile.am

package info (click to toggle)
gtask 0.1.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,360 kB
  • ctags: 570
  • sloc: sh: 9,649; ansic: 2,109; xml: 913; makefile: 218; python: 86
file content (26 lines) | stat: -rw-r--r-- 872 bytes parent folder | download
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
noinst_PROGRAMS = log-parser

INCLUDES = -I$(top_srcdir)/gtask
LDADD = $(top_builddir)/gtask/libgtask-1.0.la

AM_CFLAGS = $(GLIB_CFLAGS) $(GTHREAD_CFLAGS) $(GOBJECT_CFLAGS)
AM_LDFLAGS = $(GLIB_LIBS) $(GTHREAD_LIBS) $(GOBJECT_LIBS)

log_parser_sources = log-parser.c

if HAVE_RSS
if HAVE_VALA
if HAVE_WEBKIT
simple_feed_view_sources = simple-feed-view.c
simple_feed_view_CFLAGS = `pkg-config --cflags gtk+-2.0 rss-glib-1.0 webkit-1.0` -I$(top_srcdir)
simple_feed_view_LDFLAGS = `pkg-config --libs gtk+-2.0 rss-glib-1.0 webkit-1.0`
noinst_PROGRAMS += simple-feed-view
simple-feed-view.c: simple-feed-view.vala
	valac -C --thread --pkg gtask-1.0 --pkg glib-2.0 --pkg webkit-1.0 \
	--pkg rss-glib-1.0 $< -X -I$(top_srcdir) \
	--vapidir $(top_srcdir)/bindings/vala
endif
endif
endif

EXTRA_DIST = simple-feed-view.py simple-feed-view.vala simple-feed-view.c simple-feed-view.h