~sergiusens/notify-osd/phablet

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: David Barth
  • Date: 2009-02-18 16:04:57 UTC
  • Revision ID: david.barth@canonical.com-20090218160457-aw6d4nk7gieo0fi9
alsdorf is now officially known as 'notify-osd'

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        -I$(srcdir)             \
6
6
        $(NULL)
7
7
 
8
 
alsdorfdir = $(libexecdir)
 
8
notify_osddir = $(libexecdir)
9
9
 
10
 
alsdorf_PROGRAMS = \
11
 
        alsdorf                 \
 
10
notify_osd_PROGRAMS = \
 
11
        notify-osd              \
12
12
        $(NULL)
13
13
 
14
 
alsdorf_sources =               \
 
14
notify_osd_sources =            \
15
15
        bubble.c                \
16
16
        defaults.c              \
17
17
        main.c                  \
28
28
        ../egg/egg-hack.c               \
29
29
        $(NULL)
30
30
 
31
 
alsdorf_headers =               \
 
31
notify_osd_headers =            \
32
32
        bubble.h                \
33
33
        defaults.h              \
34
34
        observer.h              \
46
46
        ../egg/egg-hack.h               \
47
47
        $(NULL)
48
48
 
49
 
alsdorf_SOURCES =               \
50
 
        $(alsdorf_sources)      \
51
 
        $(alsdorf_headers)      \
 
49
notify_osd_SOURCES =            \
 
50
        $(notify_osd_sources)   \
 
51
        $(notify_osd_headers)   \
52
52
        $(NULL)
53
53
 
54
 
alsdorf_LDADD =                 \
 
54
notify_osd_LDADD =                      \
55
55
        $(X_LIBS)               \
56
56
        $(GLIB_LIBS)            \
57
57
        $(GCONF_LIBS)           \
59
59
        $(DBUS_LIBS)            \
60
60
        $(NULL)
61
61
 
62
 
alsdorf_CFLAGS =                \
 
62
notify_osd_CFLAGS =             \
63
63
        -Wall -Werror -std=c99  \
64
64
        -DDATADIR=\""$(datadir)"\" \
65
65
        $(GTK_CFLAGS)           \
67
67
        $(DBUS_CFLAGS)          \
68
68
        $(NULL)
69
69
 
70
 
alsdorf_LDFLAGS =               \
 
70
notify_osd_LDFLAGS =            \
71
71
        -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions \
72
72
        $(NULL)
73
73
 
74
74
# this comes from distutils.sysconfig.get_config_var('LINKFORSHARED')
75
75
 
76
 
stack-glue.h: alsdorf.xml Makefile
 
76
stack-glue.h: notify-osd.xml Makefile
77
77
        $(LIBTOOL) --mode=execute $(DBUS_GLIB_BIN)/dbus-binding-tool --prefix=stack --mode=glib-server --output=$@ $<
78
78
 
79
79
BUILT_SOURCES =                 \
80
80
        stack-glue.h
81
81
 
82
82
EXTRA_DIST =                    \
83
 
        alsdorf.xml             \
 
83
        notify-osd.xml          \
 
84
        dialog.c                \
 
85
        display.c               \
84
86
        $(NULL)
85
87
 
86
88
CLEANFILES =                    \