gnome-control-center/shell/Makefile.am
Bastien Nocera bc65958e72 shell: Fix build from previous build changes
Thanks to Kjartan for the notice
2010-09-10 17:04:10 +01:00

70 lines
1.9 KiB
Makefile

INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/libgnome-control-center \
$(GIO_CFLAGS) \
$(GNOMECC_SHELL_CFLAGS)
bin_PROGRAMS = gnome-control-center
MARSHAL_FILES = cc-shell-marshal.c cc-shell-marshal.h
BUILT_SOURCES = $(MARSHAL_FILES)
cc-shell-marshal.h: cc-shell-marshal.list
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=cc_shell_marshal $< --header > $@
cc-shell-marshal.c: cc-shell-marshal.list
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=cc_shell_marshal $< --body --header > $@
gnome_control_center_SOURCES = \
control-center.c \
gnome-control-center.c \
gnome-control-center.h \
shell-search-renderer.c \
shell-search-renderer.h \
cc-shell-category-view.c \
cc-shell-category-view.h \
cc-shell-item-view.c \
cc-shell-item-view.h \
cc-shell-model.c \
cc-shell-model.h \
$(MARSHAL_FILES)
gnome_control_center_LDADD = \
$(top_builddir)/libgnome-control-center/libgnome-control-center.la \
$(GNOMECC_SHELL_LIBS) \
$(GIO_LIBS)
gnome_control_center_LDFLAGS = -export-dynamic
AM_CPPFLAGS = \
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
-DUIDIR="\"$(uidir)\"" \
-DMENUDIR="\"$(menudir)\"" \
-DPANELS_DIR="\"$(PANELS_DIR)\""
menudir = $(sysconfdir)/xdg/menus
menu_DATA = gnomecc.menu
uidir = $(pkgdatadir)/ui
ui_DATA = shell.ui
sysdir = $(datadir)/applications
sys_in_files = gnome-control-center.desktop.in
sys_DATA = $(sys_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
directorydir = $(datadir)/desktop-directories
directory_in_files = gnomecc.directory.in
directory_DATA = $(directory_in_files:.directory.in=.directory)
@INTLTOOL_DIRECTORY_RULE@
EXTRA_DIST = \
$(ui_DATA) \
gnome-control-center.desktop.in.in \
gnomecc.directory.in \
gnomecc.menu \
cc-shell-marshal.list
DISTCLEANFILES = gnome-control-center.desktop gnome-control-center.desktop.in gnomecc.directory
-include $(top_srcdir)/git.mk