The example panel implements CcPanel and registers itself as extending the panel extension point. It provides a simple "Hello World" message. The example panel is not build by default, but enabled through a configure option.
27 lines
655 B
Makefile
27 lines
655 B
Makefile
INCLUDES = \
|
|
$(PANEL_CFLAGS) \
|
|
$(GNOMECC_CAPPLETS_CFLAGS) \
|
|
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
|
|
-DGNOMECC_DATA_DIR="\"$(pkgdatadir)\"" \
|
|
$(NULL)
|
|
|
|
ccpanelsdir = $(PANELS_DIR)
|
|
ccpanels_LTLIBRARIES = libexample.la
|
|
|
|
libexample_la_SOURCES = \
|
|
example-module.c \
|
|
cc-example-panel.c \
|
|
cc-example-panel.h
|
|
|
|
libexample_la_LIBADD = $(PANEL_LIBS)
|
|
libexample_la_LDFLAGS = $(PANEL_LDFLAGS)
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = gnome-example-panel.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
|
|
CLEANFILES = $(desktop_in_files) $(desktop_DATA)
|
|
|
|
-include $(top_srcdir)/git.mk
|