~ubuntu-branches/ubuntu/vivid/alarm-clock-applet/vivid

« back to all changes in this revision

Viewing changes to src/tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-03-17 09:02:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100317090244-ni0ye04mva2hxe10
Tags: 0.3.0-1
* New upstream release
* debian/control:
  + No change bump of Standards-Version to 3.8.4
  + Update build-deps:
    - Drop libglade, libpanel-applet, libgnomevfs2, libgnome{2,ui}
    - Add libxml2-dev and libunique-dev, intltool
* debian/patches/01_update-alarms-eta,patch:
  + Dropped, applied upstream
* debian/(alarm-clock-applet.1, alarm-clock-applet.manpages):
  + Add manpage for alarm-clock-applet, now that the binary is moved to
    /usr/bin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
include $(top_srcdir)/Makefile.decl
2
2
 
3
 
INCLUDES =                                              \
4
 
        -I.                                                     \
5
 
        -I$(srcdir)                             \
6
 
        $(GNOME_APPLETS_CFLAGS)         \
7
 
        $(LIBGLADE_CFLAGS)                      \
8
 
        $(GST_CFLAGS)                           \
9
 
        $(GNOME_LIBS2_CFLAGS)           \
10
 
        $(GLIB_CFLAGS)                          \
11
 
        $(GCONF_CFLAGS)                         \
12
 
        -I$(includedir)                         \
13
 
        -I$(top_srcdir)/src
14
 
 
15
 
check_PROGRAMS = $(TEST_PROGS) test_player test_list_entry test_util glade_view test_gconf_recursive
 
3
AM_CFLAGS =                                                             \
 
4
        -DALARM_CLOCK_DATADIR=\"$(datadir)\"            \
 
5
        -DALARM_CLOCK_PKGDATADIR=\"$(pkgdatadir)\"      \
 
6
        -I$(top_srcdir)                                                 \
 
7
        -I$(top_srcdir)/src                                                             \
 
8
        @BASE_CFLAGS@ @GTK_CFLAGS@ @GSTREAMER_CFLAGS@   \
 
9
        @GNOME_CFLAGS@  @WARN_CFLAGS@                                   
 
10
 
 
11
LIBS = @BASE_LIBS@
 
12
 
 
13
check_PROGRAMS = $(TEST_PROGS) test_player test_list_entry test_util \
 
14
                 test_gconf_recursive test_libnotify
16
15
 
17
16
TEST_PROGS += test_alarm
18
17
 
19
18
test_player_SOURCES = $(top_srcdir)/src/player.c $(top_srcdir)/src/player.h test_player.c
20
 
test_player_LDADD =                             \
21
 
        $(GLIB_LIBS)                            \
22
 
        $(GST_LIBS)
23
 
        
 
19
test_player_LDADD = @GSTREAMER_LIBS@
 
20
 
24
21
test_list_entry_SOURCES = $(top_srcdir)/src/list-entry.c        \
25
22
                                                  $(top_srcdir)/src/list-entry.h        \
26
23
                                                  $(top_srcdir)/src/util.c                      \
27
24
                                                  test_list_entry.c
28
 
 
29
 
test_list_entry_LDADD =                 \
30
 
        $(GLIB_LIBS)                            \
31
 
        $(GNOME_LIBS2_LIBS)                     \
32
 
        $(GNOME_APPLETS_LIBS)           
 
25
test_list_entry_LDADD = @GTK_LIBS@
33
26
 
34
27
test_util_SOURCES = $(top_srcdir)/src/util.c $(top_srcdir)/src/util.h test_util.c
35
 
test_util_LDADD =                               \
36
 
        $(GLIB_LIBS)                            
 
28
test_util_LDADD = @GTK_LIBS@
37
29
 
38
30
test_alarm_SOURCES =                    \
39
31
        $(top_srcdir)/src/alarm.c       \
40
32
        $(top_srcdir)/src/player.c      \
41
33
        test_alarm.c
42
34
        
43
 
test_alarm_LDADD =                              \
44
 
        $(GLIB_LIBS)                            \
45
 
        $(GCONF_LIBS)                           \
46
 
        $(GST_LIBS)
 
35
test_alarm_LDADD = @GNOME_LIBS@ @GSTREAMER_LIBS@
47
36
        
48
37
test_alarm_cpp:
49
38
        cpp $(INCLUDES) test_alarm.c
50
 
 
51
 
glade_view_SOURCES = glade_view.c
52
 
glade_view_LDADD =                              \
53
 
        $(GLIB_LIBS)                            \
54
 
        $(LIBGLADE_LIBS)                        
55
39
        
56
40
test_gconf_recursive_SOURCES = test_gconf_recursive.c
57
 
test_gconf_recursive_LDADD =    \
58
 
        $(GLIB_LIBS)                            \
59
 
        $(GCONF_LIBS)
 
41
test_gconf_recursive_LDADD = @GNOME_LIBS@
 
42
 
 
43
test_libnotify_SOURCES = test_libnotify.c
 
44
test_libnotify_LDADD = @GTK_LIBS@ @GNOME_LIBS@