It also uses fake data from the screen's area. This functionality is dictated by the definition of FAKE_AREA in CPPFLAGS. https://bugzilla.gnome.org/show_bug.cgi?id=689686
85 lines
2.7 KiB
Makefile
85 lines
2.7 KiB
Makefile
# This is used in PANEL_CFLAGS
|
|
cappletname = wacom
|
|
|
|
SUBDIRS = calibrator
|
|
|
|
INCLUDES = \
|
|
$(PANEL_CFLAGS) \
|
|
$(WACOM_PANEL_CFLAGS) \
|
|
-I$(srcdir)/calibrator \
|
|
-DGNOMELOCALEDIR="\"$(datadir)/locale\"" \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES = libwacom-properties.la
|
|
|
|
BUILT_SOURCES = \
|
|
cc-wacom-resources.c \
|
|
cc-wacom-resources.h
|
|
|
|
libwacom_properties_la_SOURCES = \
|
|
$(BUILT_SOURCES) \
|
|
cc-wacom-panel.c \
|
|
cc-wacom-panel.h \
|
|
cc-wacom-page.c \
|
|
cc-wacom-page.h \
|
|
cc-wacom-stylus-page.c \
|
|
cc-wacom-stylus-page.h \
|
|
gsd-wacom-device.c \
|
|
gsd-wacom-device.h \
|
|
gsd-input-helper.c \
|
|
gsd-input-helper.h \
|
|
cc-wacom-nav-button.c \
|
|
cc-wacom-nav-button.h \
|
|
cc-wacom-mapping-panel.c \
|
|
cc-wacom-mapping-panel.h \
|
|
gsd-enums.h
|
|
|
|
libwacom_properties_la_LIBADD = $(PANEL_LIBS) $(WACOM_PANEL_LIBS) $(builddir)/calibrator/libwacom-calibrator.la
|
|
|
|
noinst_PROGRAMS = test-wacom
|
|
|
|
test_wacom_SOURCES = \
|
|
$(BUILT_SOURCES) \
|
|
test-wacom.c \
|
|
cc-wacom-page.c \
|
|
cc-wacom-page.h \
|
|
cc-wacom-stylus-page.c \
|
|
cc-wacom-stylus-page.h \
|
|
cc-wacom-nav-button.c \
|
|
cc-wacom-nav-button.h \
|
|
cc-wacom-mapping-panel.c \
|
|
cc-wacom-mapping-panel.h \
|
|
gsd-wacom-device.c \
|
|
gsd-wacom-device.h \
|
|
gsd-input-helper.c \
|
|
gsd-input-helper.h \
|
|
gsd-enums.h
|
|
|
|
test_wacom_CPPFLAGS = $(INCLUDES) -DFAKE_AREA
|
|
test_wacom_LDADD = $(PANEL_LIBS) $(WACOM_PANEL_LIBS) $(builddir)/calibrator/libwacom-calibrator-test.la
|
|
|
|
resource_files = $(shell glib-compile-resources --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/wacom.gresource.xml)
|
|
cc-wacom-resources.c: wacom.gresource.xml $(resource_files)
|
|
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-source --c-name cc_wacom $<
|
|
cc-wacom-resources.h: wacom.gresource.xml $(resource_files)
|
|
$(AM_V_GEN) glib-compile-resources --target=$@ --sourcedir=$(srcdir) --generate-header --c-name cc_wacom $<
|
|
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = gnome-wacom-panel.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
|
|
WACOMDIR=$(top_srcdir)/../gnome-settings-daemon/plugins/wacom/
|
|
WACOMFILES=gsd-wacom-device.c gsd-wacom-device.h
|
|
COMMONDIR=$(top_srcdir)/../gnome-settings-daemon/plugins/common/
|
|
COMMONFILES=gsd-input-helper.c gsd-input-helper.h
|
|
update-from-gsd:
|
|
FILES="$(WACOMFILES)" DIR="$(WACOMDIR)" $(top_srcdir)/update-from-gsd.sh && changed=true ; \
|
|
FILES="$(COMMONFILES)" DIR="$(COMMONDIR)" $(top_srcdir)/update-from-gsd.sh && changed=true ; \
|
|
git commit -m "wacom: Update from gnome-settings-daemon" $(WACOMFILES) $(COMMONFILES)
|
|
|
|
CLEANFILES = $(Desktop_in_files) $(desktop_DATA) $(BUILT_SOURCES)
|
|
EXTRA_DIST = $(resource_files) wacom.gresource.xml
|
|
|
|
-include $(top_srcdir)/git.mk
|