~ubuntu-branches/ubuntu/oneiric/avant-window-navigator/oneiric

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2008-05-24 14:42:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080524144201-r3v8e4g2hv2q1i9x
Tags: 0.2.6-6
* debian/patches/04-fix-colormap.patch
 - Fix crash in awn-manager if colormap == None. Thanks Emme for the 
   patch. (Closes: #482030) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
INCLUDES =                                      \
 
1
NULL = 
 
2
INCLUDES =                              \
2
3
        $(AWN_CFLAGS)                   \
3
 
        $(WARN_CFLAGS)
 
4
        $(DOCK_CFLAGS)                  \
 
5
        -DLIBDIR=\""$(libdir)"\"        \
 
6
        -I$(top_srcdir)/libawn          \
 
7
        $(NULL)
4
8
 
5
9
bin_PROGRAMS = avant-window-navigator
6
10
 
7
 
AM_CFLAGS =                                                             \
8
 
        -DDATADIR=\""$(datadir)"\"                                      \
9
 
        -DLIBDIR=\""$(libdir)"\"                                        \
10
 
        -DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"          \
11
 
        -I$(top_builddir)/libawn
12
 
 
13
 
avant_window_navigator_LDADD  = $(DEPS_LIBS)                    \
14
 
        $(AWN_LIBS)                             \
15
 
        $(top_builddir)/libawn/libawn.la  
16
 
 
17
 
avant_window_navigator_SOURCES =                        \
 
11
avant_window_navigator_LDADD =                  \
 
12
        $(DOCK_LIBS)                            \
 
13
        $(top_builddir)/libawn/libawn.la        \
 
14
        $(NULL)
 
15
 
 
16
avant_window_navigator_SOURCES =        \
18
17
        main.c                          \
19
18
        awn-applet-manager.h            \
20
19
        awn-applet-manager.c            \
40
39
        awn-utils.c                     \
41
40
        inlinepixbufs.h                 \
42
41
        xutils.h                        \
43
 
        xutils.c                        
44
 
 
45
 
icon_test_SOURCES=              \
46
 
        icon-test.c             \
47
 
        xutils.h                \
48
 
        xutils.c                                
49
 
                                                
50
 
icon_test_LDADD =                       \
51
 
        $(AWN_LIBS)
 
42
        xutils.c                        \
 
43
        $(NULL)
 
44
 
 
45
icon_test_SOURCES =     \
 
46
        icon-test.c     \
 
47
        xutils.h        \
 
48
        xutils.c        \
 
49
        $(NULL)
 
50
 
 
51
icon_test_LDADD =       \
 
52
        $(DOCK_LIBS)    \
 
53
        $(NULL)
52
54
 
53
55
awn-dbus-glue.h: awn-dbus.xml Makefile
54
56
        $(LIBTOOL) --mode=execute $(DBUS_GLIB_BIN)/dbus-binding-tool --prefix=awn_task_manager --mode=glib-server --output=$@ $<
57
59
        $(LIBTOOL) --mode=execute $(DBUS_GLIB_BIN)/dbus-binding-tool --prefix=awn_applet_manager --mode=glib-server --output=$@ $<
58
60
 
59
61
awn-marshallers.c: awn-marshallers.list
60
 
        glib-genmarshal --prefix _awn_marshal --body $< > $@
 
62
        $(GLIB_GENMARSHAL) --prefix _awn_marshal --body $< > $@
61
63
 
62
64
awn-marshallers.h: awn-marshallers.list
63
 
        glib-genmarshal --prefix _awn_marshal --header $< > $@
64
 
        
 
65
        $(GLIB_GENMARSHAL) --prefix _awn_marshal --header $< > $@
 
66
 
65
67
BUILT_SOURCES =                         \
66
68
        awn-dbus-glue.h                 \
67
69
        awn-applet-manager-glue.h       \
68
70
        awn-marshallers.h               \
69
 
        awn-marshallers.c
 
71
        awn-marshallers.c               \
 
72
        $(NULL)
70
73
 
71
74
EXTRA_DIST =                            \
72
75
        awn-dbus.xml                    \
73
76
        awn-applet-manager-dbus.xml     \
74
 
        awn-marshallers.list
75
 
 
76
 
noinst_PROGRAMS=                \
77
 
        icon-test                                                       
78
 
 
 
77
        awn-marshallers.list            \
 
78
        $(NULL)
 
79
 
 
80
noinst_PROGRAMS =       \
 
81
        icon-test       \
 
82
        $(NULL)
 
83
# vim: set ts=8 sts=8 sw=8 :