2004-10-15 Jody Goldberg <jody@gnome.org> * configure.in : bump the xklavier version dep. I hope 1.04 is sufficient, rather than cvs head.
58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
splashdir = $(datadir)/pixmaps/gnomecc-2
|
|
splash_DATA = \
|
|
bcg_top.png \
|
|
title.png \
|
|
blank.png \
|
|
active.png
|
|
|
|
sysdir = $(datadir)/applications
|
|
sys_in_files = gnomecc.desktop.in
|
|
sys_DATA = $(sys_in_files:.desktop.in=.desktop)
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
serverdir = $(libdir)/bonobo/servers
|
|
server_in_files = GNOME_ControlCenter.server.in
|
|
server_DATA = $(server_in_files:.server.in=.server)
|
|
@INTLTOOL_SERVER_RULE@
|
|
|
|
uidir = $(datadir)/gnome-2.0/ui
|
|
ui_DATA = gnomecc-ui.xml
|
|
|
|
INCLUDES = \
|
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
|
-DSETTINGS_DIR=\""$(GNOMECC_DESKTOP_DIR)"\" \
|
|
-DGNOMECC_ICONS_DIR=\""$(GNOMECC_ICONS_DIR)"\" \
|
|
-DPIXMAP_DIR=\""$(datadir)/pixmaps"\" \
|
|
-DART_DIR=\""$(splashdir)"\" \
|
|
-DGNOME_SBINDIR=\""$(sbindir)"\" \
|
|
$(GNOMECC_CFLAGS) $(NAUTILUS_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) $(NAUTILUS_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
|
|
noinst_DATA = $(pixbuf_file)
|
|
|
|
$(pixbuf_file) : $(IMAGES)
|
|
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) > $@
|
|
|
|
EXTRA_DIST = gnomecc.desktop.in $(splash_DATA) $(ui_DATA) $(server_DATA) \
|
|
$(IMAGES)
|
|
|
|
BUILT_SOURCES = $(pixbuf_file)
|
|
CLEANFILES = gnomecc.desktop $(noinst_DATA)
|