gnome-control-center/control-center/Makefile.am
Carlos Garnacho Parro 5a27e2bdea new widget that inherits from GnomeCanvas, the drawing logic has been
2005-05-14  Carlos Garnacho Parro  <carlosg@gnome.org>

        * control-center/gnomecc-canvas.[ch]: new widget that inherits
        from GnomeCanvas, the drawing logic has been mostly moved from
        control-center.c, but the layout function has been quite improved
        (now handles RTL/LTR correctly, assigns a fixed width to all items
        and caches some things to make things a bit faster)

        * control-center/control-center.c: removed canvas drawing logic,
        and use the new widget

        * Makefile.am: include gnomecc-canvas.[ch]
2005-05-16 13:57:06 +00:00

41 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 \
gnomecc-canvas.c \
gnomecc-canvas.h
gnome_control_center_LDADD = $(GNOMECC_LIBS)
IMAGES = text-selection-frame.png
VARIABLES = \
gnomecc_rounded_rect_frame $(srcdir)/text-selection-frame.png
pixbuf_file = gnomecc-rounded-rect-pixbuf.h
$(pixbuf_file) : $(IMAGES)
$(GDK_PIXBUF_CSOURCE) --raw --build-list $(VARIABLES) > $@
EXTRA_DIST = gnomecc.desktop.in $(IMAGES) $(icon_DATA)
BUILT_SOURCES = $(pixbuf_file)
DISTCLEANFILES = gnomecc.desktop $(pixbuf_file)