GNOMECC_CAPPLETS_CLEANFILES duplicated existing files to be removed and GNOMECC_CAPPLETS_EXTRA_DIST was no longer used anywhere.
77 lines
2.5 KiB
Makefile
77 lines
2.5 KiB
Makefile
# This is used in GNOMECC_CAPPLETS_CFLAGS
|
|
cappletname = display
|
|
|
|
uidir = $(pkgdatadir)/ui
|
|
dist_ui_DATA = display-capplet.ui
|
|
|
|
MARSHALFILES = foo-marshal.c foo-marshal.h
|
|
BUILT_SOURCES = $(MARSHALFILES)
|
|
|
|
foo-marshal.c: foo-marshal.h
|
|
$(AM_V_GEN) ( $(GLIB_GENMARSHAL) --prefix=foo_marshal $(srcdir)/foo-marshal.list --header --body > foo-marshal.c )
|
|
foo-marshal.h: foo-marshal.list
|
|
$(AM_V_GEN) ( $(GLIB_GENMARSHAL) --prefix=foo_marshal $(srcdir)/foo-marshal.list --header > foo-marshal.h )
|
|
|
|
ccpanelsdir = $(PANELS_DIR)
|
|
ccpanels_LTLIBRARIES = libdisplay.la
|
|
|
|
libdisplay_la_SOURCES = \
|
|
display-module.c \
|
|
cc-display-panel.c \
|
|
cc-display-panel.h \
|
|
xrandr-capplet.c \
|
|
xrandr-capplet.h \
|
|
scrollarea.c \
|
|
scrollarea.h \
|
|
$(MARSHALFILES)
|
|
|
|
libdisplay_la_LIBADD = $(DBUS_LIBS) $(PANEL_LIBS)
|
|
libdisplay_la_LDFLAGS = $(PANEL_LDFLAGS) $(DISPLAY_CAPPLET_LIBS) $(GNOME_DESKTOP_LIBS)
|
|
|
|
# You will need a recent intltool or the patch from this bug
|
|
# http://bugzilla.gnome.org/show_bug.cgi?id=462312
|
|
@INTLTOOL_POLICY_RULE@
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
icons16dir = $(datadir)/icons/hicolor/16x16/apps
|
|
dist_icons16_DATA = icons/16x16/preferences-desktop-display.png
|
|
icons22dir = $(datadir)/icons/hicolor/22x22/apps
|
|
dist_icons22_DATA = icons/22x22/preferences-desktop-display.png
|
|
icons24dir = $(datadir)/icons/hicolor/24x24/apps
|
|
dist_icons24_DATA = icons/24x24/preferences-desktop-display.png
|
|
icons32dir = $(datadir)/icons/hicolor/32x32/apps
|
|
dist_icons32_DATA = icons/32x32/preferences-desktop-display.png
|
|
iconssvgdir = $(datadir)/icons/hicolor/scalable/apps
|
|
dist_iconssvg_DATA = icons/scalable/preferences-desktop-display.svg
|
|
|
|
desktopdir = $(datadir)/applications
|
|
Desktop_in_files = gnome-display-panel.desktop.in
|
|
desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop)
|
|
|
|
INCLUDES = $(DISPLAY_CAPPLET_CFLAGS) \
|
|
$(DBUS_CFLAGS) \
|
|
$(GNOMECC_CAPPLETS_CFLAGS) \
|
|
$(GNOME_DESKTOP_CFLAGS) \
|
|
-DSBINDIR="\"$(sbindir)\"" \
|
|
-DUIDIR="\"$(uidir)\"" \
|
|
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
|
|
-DGNOMECC_DATA_DIR="\"$(pkgdatadir)\""
|
|
|
|
CLEANFILES = $(Desktop_in_files) $(desktop_DATA)
|
|
|
|
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
|
install-data-hook: update-icon-cache
|
|
uninstall-hook: update-icon-cache
|
|
update-icon-cache:
|
|
@-if test -z "$(DESTDIR)"; then \
|
|
echo "Updating Gtk icon cache."; \
|
|
$(gtk_update_icon_cache); \
|
|
else \
|
|
echo "*** Icon cache not updated. After (un)install, run this:"; \
|
|
echo "*** $(gtk_update_icon_cache)"; \
|
|
fi
|
|
|
|
EXTRA_DIST = foo-marshal.list
|
|
|
|
-include $(top_srcdir)/git.mk
|