2004-11-10 Mark McLoughlin <mark@skynet.ie> * control-center-categories.[ch]: re-write to use libgnome-menu to load the contents of the preferences menu. * control-center.c: (relayout_canvas), (get_x), (get_y), (get_entry), (get_line_length): update for control-center-categories.[ch] changes. (activate_entry): load the .desktop file and launch. (create_window), (main): remove all nautilus and bonobo stuff. * gnome-control-center.png: rename from control-center2.png. * gnomecc.desktop.in: update for new icon name. * GNOME_ControlCenter.server.in: remove, we're not a Nautilus view anymore. * active.png, bcg_top.png, bg.png, bgtop.png, blank.png, ccsplash.png, empty.png, foot.png, gnome-lockscreen.png, gnome-unlockscreen.png, gnomecc-ui.xml, html-view.xpm, kill-gnomecc.sh, left.png, left_top.png, title.png, tree-view.xpm: Remove what seems to be a big bunch of cruft. * Makefile.am: remove cruft, install new icon, don't link aganst libnautilus.
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
icondir = $(datadir)/icons/hicolor/48x48/apps
|
|
icon_DATA = gnome-control-center.png
|
|
|
|
sysdir = $(datadir)/applications
|
|
sys_in_files = gnomecc.desktop.in
|
|
sys_DATA = $(sys_in_files:.desktop.in=.desktop)
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
INCLUDES = \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
-DGNOMECC_ICONS_DIR=\""$(GNOMECC_ICONS_DIR)"\" \
|
|
$(GNOMECC_CFLAGS)
|
|
|
|
bin_PROGRAMS = gnome-control-center
|
|
|
|
gnome_control_center_SOURCES = \
|
|
control-center-categories.c \
|
|
control-center-categories.h \
|
|
control-center.c \
|
|
gnomecc-rounded-rect.c \
|
|
gnomecc-rounded-rect.h \
|
|
gnomecc-event-box.c \
|
|
gnomecc-event-box.h
|
|
|
|
gnome_control_center_LDADD = $(GNOMECC_LIBS)
|
|
|
|
IMAGES = text-selection-frame.png
|
|
VARIABLES = \
|
|
gnomecc_rounded_rect_frame $(srcdir)/text-selection-frame.png
|
|
|
|
pixbuf_file = $(top_builddir)/control-center/gnomecc-rounded-rect-pixbuf.h
|
|
pixbuf_file = gnomecc-rounded-rect-pixbuf.h
|
|
|
|
$(pixbuf_file) : $(IMAGES)
|
|
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) > $@
|
|
|
|
EXTRA_DIST = gnomecc.desktop.in $(IMAGES)
|
|
|
|
BUILT_SOURCES = $(pixbuf_file)
|
|
DISTCLEANFILES = gnomecc.desktop $(pixbuf_file)
|