openbox/Makefile.am
Dana Jansens 037fc862b0 pango is now mandatory..
lots of cleanups to the pango code, which was a very nice base to start from. thanks to whomever wrote that for us.. put some of the pango variables into the various render structs so that they don't need to be created all the time. put the pango context inside our RrInstance so that it can be properly freed at shutdown. removed xft dependencies all through the code and the build system also. who knows if this will break compiling for some poor souls. i guess we'll find out, won't we!
2007-03-03 02:53:41 +00:00

389 lines
8.8 KiB
Makefile

SUBDIRS = m4 po
themedir = $(datadir)/themes
localedir = $(datadir)/locale
configdir = $(sysconfdir)/xdg
rcdir = $(configdir)/openbox
desktopfilesdir = $(datadir)/gnome/wm-properties
pkgconfigdir = $(libdir)/pkgconfig
pubincludedir = $(includedir)/openbox/@OB_VERSION@/openbox
pixmapdir = $(datadir)/pixmaps
xsddir = $(datadir)/openbox
userscriptdir = $(datadir)/openbox
theme = bear2
AUTOMAKE_OPTIONS = subdir-objects foreign
ACLOCAL_AMFLAGS = -I m4
INCLUDES = -I.
check_PROGRAMS = \
render/rendertest
lib_LTLIBRARIES = \
parser/libobparser.la \
render/libobrender.la
bin_PROGRAMS = \
openbox/openbox \
tools/kdetrayproxy/kdetrayproxy \
tools/gnome-panel-control/gnome-panel-control
## render ##
render_rendertest_CPPFLAGS = \
$(PANGO_CFLAGS) \
$(GLIB_CFLAGS) \
-DG_LOG_DOMAIN=\"RenderTest\"
render_rendertest_LDADD = \
parser/libobparser.la \
render/libobrender.la \
$(GLIB_LIBS) \
$(PANGO_LIBS) \
$(XML_LIBS) \
$(X_LIBS)
render_rendertest_SOURCES = render/test.c
render_libobrender_la_CPPFLAGS = \
$(X_CFLAGS) \
$(GLIB_CFLAGS) \
$(XML_CFLAGS) \
$(PANGO_CFLAGS) \
-DG_LOG_DOMAIN=\"ObRender\" \
-DDEFAULT_THEME=\"$(theme)\"
render_libobrender_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
render_libobrender_la_LIBADD = \
parser/libobparser.la \
$(X_LIBS) \
$(PANGO_LIBS) \
$(GLIB_LIBS) \
$(XML_LIBS)
render_libobrender_la_SOURCES = \
gettext.h \
render/color.h \
render/color.c \
render/font.h \
render/font.c \
render/geom.h \
render/gradient.h \
render/gradient.c \
render/icon.h \
render/image.h \
render/image.c \
render/instance.h \
render/instance.c \
render/mask.h \
render/mask.c \
render/render.h \
render/render.c \
render/theme.h \
render/theme.c
## parser ##
parser_libobparser_la_CPPFLAGS = \
$(GLIB_CFLAGS) \
$(XML_CFLAGS) \
-DG_LOG_DOMAIN=\"ObParser\" \
-DLOCALEDIR=\"$(localedir)\" \
-DDATADIR=\"$(datadir)\" \
-DCONFIGDIR=\"$(configdir)\"
parser_libobparser_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
parser_libobparser_la_LIBADD = \
$(GLIB_LIBS) \
$(XML_LIBS)
parser_libobparser_la_SOURCES = \
parser/parse.h \
parser/parse.c
## openbox ##
openbox_openbox_CPPFLAGS = \
$(X_CFLAGS) \
$(SM_CFLAGS) \
$(PANGO_CFLAGS) \
$(GLIB_CFLAGS) \
$(LIBSN_CFLAGS) \
$(XML_CFLAGS) \
-DLOCALEDIR=\"$(localedir)\" \
-DDATADIR=\"$(datadir)\" \
-DCONFIGDIR=\"$(configdir)\" \
-DG_LOG_DOMAIN=\"Openbox\"
openbox_openbox_LDADD = \
$(SM_LIBS) \
$(XINERAMA_LIBS) \
$(XKB_LIBS) \
$(XRANDR_LIBS) \
$(XSHAPE_LIBS) \
$(GLIB_LIBS) \
$(X_LIBS) \
$(LIBSN_LIBS) \
$(XML_LIBS) \
$(EFENCE_LIBS) \
$(LIBINTL) \
render/libobrender.la \
parser/libobparser.la
openbox_openbox_LDFLAGS = -export-dynamic
openbox_openbox_SOURCES = \
gettext.h \
openbox/action.c \
openbox/action.h \
openbox/client.c \
openbox/client.h \
openbox/client_list_menu.c \
openbox/client_list_combined_menu.c \
openbox/client_list_combined_menu.h \
openbox/client_menu.c \
openbox/client_menu.h \
openbox/config.c \
openbox/config.h \
openbox/debug.c \
openbox/debug.h \
openbox/dock.c \
openbox/dock.h \
openbox/event.c \
openbox/event.h \
openbox/extensions.c \
openbox/extensions.h \
openbox/focus.c \
openbox/focus.h \
openbox/frame.c \
openbox/frame.h \
openbox/framerender.c \
openbox/framerender.h \
openbox/geom.h \
openbox/grab.c \
openbox/grab.h \
openbox/group.c \
openbox/group.h \
openbox/keyboard.c \
openbox/keyboard.h \
openbox/keytree.c \
openbox/keytree.h \
openbox/mainloop.c \
openbox/mainloop.h \
openbox/menuframe.c \
openbox/menuframe.h \
openbox/menu.c \
openbox/menu.h \
openbox/misc.h \
openbox/mouse.c \
openbox/mouse.h \
openbox/moveresize.c \
openbox/moveresize.h \
openbox/mwm.h \
openbox/openbox.c \
openbox/openbox.h \
openbox/place.c \
openbox/place.h \
openbox/popup.c \
openbox/popup.h \
openbox/prop.c \
openbox/prop.h \
openbox/resist.c \
openbox/resist.h \
openbox/screen.c \
openbox/screen.h \
openbox/session.c \
openbox/session.h \
openbox/stacking.c \
openbox/stacking.h \
openbox/startupnotify.c \
openbox/startupnotify.h \
openbox/translate.c \
openbox/translate.h \
openbox/window.c \
openbox/window.h \
openbox/xerror.c \
openbox/xerror.h
## kdetrayproxy ##
tools_kdetrayproxy_kdetrayproxy_CPPFLAGS = \
$(X_CFLAGS)
tools_kdetrayproxy_kdetrayproxy_LDADD = \
$(X_LIBS)
tools_kdetrayproxy_kdetrayproxy_SOURCES = \
tools/kdetrayproxy/kdetrayproxy.c
## gnome-panel-control ##
tools_gnome_panel_control_gnome_panel_control_CPPFLAGS = \
$(X_CFLAGS)
tools_gnome_panel_control_gnome_panel_control_LDADD = \
$(X_LIBS)
tools_gnome_panel_control_gnome_panel_control_SOURCES = \
tools/gnome-panel-control/gnome-panel-control.c
## themes ##
mikachu_themedir = $(themedir)/Mikachu/openbox-3
dist_mikachu_theme_DATA= \
themes/Mikachu/openbox-3/bullet.xbm \
themes/Mikachu/openbox-3/close.xbm \
themes/Mikachu/openbox-3/desk.xbm \
themes/Mikachu/openbox-3/iconify.xbm \
themes/Mikachu/openbox-3/max.xbm \
themes/Mikachu/openbox-3/themerc
natura_themedir = $(themedir)/Natura/openbox-3
dist_natura_theme_DATA= \
themes/Natura/openbox-3/close_hover.xbm \
themes/Natura/openbox-3/close.xbm \
themes/Natura/openbox-3/desk_toggled.xbm \
themes/Natura/openbox-3/desk.xbm \
themes/Natura/openbox-3/iconify_disabled.xbm \
themes/Natura/openbox-3/iconify_hover.xbm \
themes/Natura/openbox-3/iconify.xbm \
themes/Natura/openbox-3/max_disabled.xbm \
themes/Natura/openbox-3/max_hover.xbm \
themes/Natura/openbox-3/max_toggled.xbm \
themes/Natura/openbox-3/max.xbm \
themes/Natura/openbox-3/shade.xbm \
themes/Natura/openbox-3/themerc
artwizboxed_themedir = $(themedir)/artwiz-boxed/openbox-3
dist_artwizboxed_theme_DATA= \
themes/artwiz-boxed/openbox-3/bullet.xbm \
themes/artwiz-boxed/openbox-3/close.xbm \
themes/artwiz-boxed/openbox-3/desk_toggled.xbm \
themes/artwiz-boxed/openbox-3/desk.xbm \
themes/artwiz-boxed/openbox-3/iconify.xbm \
themes/artwiz-boxed/openbox-3/max_toggled.xbm \
themes/artwiz-boxed/openbox-3/max.xbm \
themes/artwiz-boxed/openbox-3/themerc
bear2_themedir = $(themedir)/bear2/openbox-3
dist_bear2_theme_DATA= \
themes/bear2/openbox-3/close_pressed.xbm \
themes/bear2/openbox-3/close.xbm \
themes/bear2/openbox-3/desk_toggled.xbm \
themes/bear2/openbox-3/desk.xbm \
themes/bear2/openbox-3/iconify_disabled.xbm \
themes/bear2/openbox-3/iconify_pressed.xbm \
themes/bear2/openbox-3/iconify.xbm \
themes/bear2/openbox-3/max_disabled.xbm \
themes/bear2/openbox-3/max_pressed.xbm \
themes/bear2/openbox-3/max_toggled.xbm \
themes/bear2/openbox-3/max.xbm \
themes/bear2/openbox-3/shade_pressed.xbm \
themes/bear2/openbox-3/shade.xbm \
themes/bear2/openbox-3/themerc
orang_themedir = $(themedir)/orang/openbox-3
dist_orang_theme_DATA= \
themes/orang/openbox-3/themerc
syscrash_themedir = $(themedir)/syscrash/openbox-3
dist_syscrash_theme_DATA= \
themes/syscrash/openbox-3/bullet.xbm \
themes/syscrash/openbox-3/close_disabled.xbm \
themes/syscrash/openbox-3/close.xbm \
themes/syscrash/openbox-3/desk_toggled.xbm \
themes/syscrash/openbox-3/desk.xbm \
themes/syscrash/openbox-3/iconify.xbm \
themes/syscrash/openbox-3/max_disabled.xbm \
themes/syscrash/openbox-3/max_pressed.xbm \
themes/syscrash/openbox-3/max_toggled.xbm \
themes/syscrash/openbox-3/max.xbm \
themes/syscrash/openbox-3/shade.xbm \
themes/syscrash/openbox-3/themerc
## public headers ##
pubinclude_HEADERS = \
render/color.h \
render/font.h \
render/geom.h \
render/gradient.h \
render/image.h \
render/instance.h \
render/mask.h \
render/render.h \
render/theme.h \
parser/parse.h
nodist_pubinclude_HEADERS = \
version.h
nodist_pkgconfig_DATA = \
render/obrender-3.0.pc \
parser/obparser-3.0.pc
## data ##
dist_pixmap_DATA = \
data/openbox.png
nodist_rc_DATA = \
data/rc.xml \
data/menu.xml
dist_xsd_DATA = \
data/rc.xsd \
data/menu.xsd
edit = $(SED) \
-e 's!@version\@!$(VERSION)!' \
-e 's!@xsddir\@!$(xsddir)!'
data/rc.xml: Makefile $(srcdir)/data/rc.xml.in data
@echo make: creating $@
@rm -f $@
@mkdir data 2>/dev/null || true
@$(edit) $(srcdir)/data/rc.xml.in >$@
data/menu.xml: Makefile $(srcdir)/data/menu.xml.in data
@echo make: creating $@
@rm -f $@
@mkdir data 2>/dev/null || true
@$(edit) $(srcdir)/data/menu.xml.in >$@
dist_userscript_DATA = \
tools/themeupdate/themeupdate.py
install-data-hook:
chmod +x $(DESTDIR)$(userscriptdir)/themeupdate.py
dist_desktopfiles_DATA = \
data/openbox.desktop
dist_noinst_DATA = \
version.h.in \
data/rc.xml.in \
data/menu.xml.in \
render/obrender-3.0.pc.in \
parser/obparser-3.0.pc.in
EXTRA_DIST = \
config.rpath \
mkinstalldirs \
CHANGELOG \
COMPLIANCE \
README \
COPYING \
AUTHORS
CLEANFILES = \
data/rc.xml \
data/menu.xml
#doc:
# $(MAKE) -$(MAKEFLAGS) -C doc/doxygen doc
distclean-local:
for d in . m4 po render; do \
for p in core core.* gmon.out *\~ *.orig *.rej .\#*; do \
rm -f "$$d/$$p"; \
done \
done
.PHONY: doc