source: proiecte/PPPP/gdm/gui/simple-greeter/libnotificationarea/Makefile.am @ 134

Last change on this file since 134 was 134, checked in by (none), 14 years ago

gdm sources with the modifications for webcam

File size: 1.2 KB
Line 
1NULL =
2
3INCLUDES = \
4        -I.                                     \
5        -I..                                    \
6        -DBINDIR=\"$(bindir)\"                  \
7        -DDATADIR=\"$(datadir)\"                \
8        -DLIBDIR=\"$(libdir)\"                  \
9        -DLIBEXECDIR=\"$(libexecdir)\"          \
10        -DLOGDIR=\"$(logdir)\"                  \
11        -DPIXMAPDIR=\"$(pixmapdir)\"            \
12        -DSBINDIR=\"$(sbindir)\"                \
13        $(GTK_CFLAGS)                           \
14        $(NULL)
15
16noinst_LTLIBRARIES =                    \
17        libnotificationarea.la          \
18        $(NULL)
19
20BUILT_SOURCES =         \
21        na-marshal.c    \
22        na-marshal.h    \
23        $(NULL)
24
25libnotificationarea_la_SOURCES =                \
26        fixedtip.h                              \
27        fixedtip.c                              \
28        obox.c                                  \
29        obox.h                                  \
30        na-tray.c                               \
31        na-tray.h                               \
32        na-tray-manager.c                       \
33        na-tray-manager.h                       \
34        na-marshal.c                            \
35        na-marshal.h                            \
36        $(NULL)
37
38libnotificationarea_la_LIBADD =                 \
39        $(GTK_LIBS)                             \
40        $(NULL)
41
42libnotificationarea_la_LDFLAGS =                \
43        -export-dynamic                         \
44        $(NULL)
45
46EXTRA_DIST =                                    \
47        na-marshal.list                         \
48        $(NULL)
49
50na-marshal.h: na-marshal.list $(GLIB_GENMARSHAL)
51        $(GLIB_GENMARSHAL) $< --header --prefix=_na_marshal > $@
52
53na-marshal.c: na-marshal.list $(GLIB_GENMARSHAL)
54        echo "#include \"na-marshal.h\"" > $@ && \
55        $(GLIB_GENMARSHAL) $< --body --prefix=_na_marshal >> $@
56
57noinst_PROGRAMS = testtray
58
59testtray_SOURCES =              \
60        testtray.c              \
61        $(NULL)
62
63testtray_LDADD =                \
64        libnotificationarea.la  \
65        $(GREETER_LIBS)         \
66        $(NULL)
Note: See TracBrowser for help on using the repository browser.