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.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
appicondir = $(datadir)/pixmaps
|
|
appicon_DATA = control-center.png
|
|
|
|
splashdir = $(datadir)/pixmaps
|
|
splash_DATA = ccsplash.png
|
|
|
|
sysdir = $(datadir)/gnome/apps/Settings
|
|
sys_DATA = gnomecc.desktop
|
|
|
|
gladedir = $(datadir)/control-center-data
|
|
glade_DATA = gnomecc.glade
|
|
|
|
INCLUDES = \
|
|
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
|
|
-DGLADEDIR=\""$(datadir)/control-center-data"\" \
|
|
-I$(top_srcdir)/intl -I$(top_builddir)/intl \
|
|
-I$(includedir) $(GNOME_INCLUDEDIR) \
|
|
-DVERSION=\""$(VERSION)"\" \
|
|
-DSETTINGS_DIR=\""$(datadir)/control-center"\" \
|
|
$(LIBGLADE_CFLAGS) \
|
|
-DPIXMAPS_DIR=\""$(appicondir)"\"
|
|
|
|
bin_PROGRAMS = gnomecc
|
|
|
|
gnomecc_SOURCES = \
|
|
main.c \
|
|
capplet-dir.c capplet-dir.h \
|
|
capplet-dir-view.c capplet-dir-view.h \
|
|
preferences.c preferences.h \
|
|
capplet-dir-view-html.c \
|
|
capplet-dir-view-tree.c \
|
|
capplet-dir-view-list.c
|
|
|
|
gnomecc_LDADD = \
|
|
$(GNOME_LIBDIR) \
|
|
$(GNOME_CAPPLET_LIBS) \
|
|
$(INTLLIBS) \
|
|
$(LIBGLADE_LIBS) \
|
|
-lgdk_pixbuf -lgnomecanvaspixbuf \
|
|
-lgtkhtml -lgnomeprint \
|
|
-lpspell -lstdc++
|
|
|
|
EXTRA_DIST = gnomecc.desktop $(appicon_DATA) $(splash_DATA) $(glade_DATA)
|