This contains: * a few capplets were redone UI wise: ui-properties keyboard background-properties * splitting of libcapplet out of this modules (into libcapplet) * new html-based view in the control-center * initial import of functional root-manager This stuff isn't all done yet, but I wanted to get it in. TODO files will hopefully follow.
34 lines
889 B
Makefile
34 lines
889 B
Makefile
Applicationsdir = $(datadir)/control-center/Desktop
|
|
Applications_DATA = \
|
|
keyboard-properties.desktop
|
|
|
|
pApplicationsdir = $(datadir)/gnome/apps/Settings/Desktop
|
|
pApplications_DATA = \
|
|
keyboard-properties.desktop
|
|
|
|
Gladedir = $(datadir)/control-center-data
|
|
Glade_DATA = \
|
|
keyboard-properties.glade
|
|
|
|
glade_msgs = \
|
|
keyboard-properties.glade.h
|
|
|
|
EXTRA_DIST = ChangeLog $(Applications_DATA) $(Glade_DATA) $(glade_msgs)
|
|
|
|
INCLUDES = \
|
|
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
|
-DGNOME_ICONDIR=\""${prefix}/share/pixmaps"\" \
|
|
-DG_LOG_DOMAIN=\"keyboard-properties\" \
|
|
-DGLADE_DATADIR=\""$(Gladedir)"\" \
|
|
$(CAPPLET_CFLAGS) \
|
|
-I$(top_srcdir)/ \
|
|
-I$(top_srcdir)/intl
|
|
|
|
bin_PROGRAMS = keyboard-properties
|
|
|
|
keyboard_properties_SOURCES = \
|
|
prefs-widget.c prefs-widget.h \
|
|
preferences.c preferences.h \
|
|
main.c
|
|
|
|
keyboard_properties_LDADD = $(CAPPLET_LIBS) $(XF86MISC_LIBS)
|