blob: 6551708a2c29e75e21c090ac4c758fbef60f845d (
plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
NULL =
uidir = $(pkgdatadir)/ui
INCLUDES = \
$(CAPPLET_CFLAGS) \
$(NULL)
lib_LTLIBRARIES = libgnome-control-center.la
libgnome_control_center_include_HEADERS = \
cc-panel.h \
cc-shell.h \
gconf-property-editor.h \
$(NULL)
libgnome_control_center_la_SOURCES = \
cc-marshal.c \
cc-marshal.h \
cc-panel.c \
cc-panel.h \
cc-shell.c \
cc-shell.h \
gconf-property-editor.c \
gconf-property-editor.h \
$(NULL)
libgnome_control_center_la_LDFLAGS = \
no-undefined \
-version-info $(LIBGNOMECONTROLCENTER_CURRENT):$(LIBGNOMECONTROLCENTER_REVISION):$(LIBGNOMECONTROLCENTER_AGE) \
$(NULL)
libgnome_control_center_la_LIBADD = \
$(CAPPLET_LIBS) \
$(NULL)
libgnome_control_center_la_LIBTOOLFLAGS = --tag=disable-static
libgnome_control_center_includedir = $(includedir)/gnome-control-center-1/libgnome-control-center
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA=libgnome-control-center.pc
EXTRA_DIST = \
libgnome-control-center.pc.in \
$(NULL)
AM_CPPFLAGS = \
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
-DUIDIR="\"$(uidir)\"" \
-DMENUDIR="\"$(menudir)\""
-include $(top_srcdir)/git.mk
|