awesome/Makefile.am

287 lines
8.7 KiB
Makefile
Raw Normal View History

2008-01-04 20:49:49 +01:00
BUILT_SOURCES =
CLEANFILES =
EXTRA_DIST =
SUFFIXES =
bin_PROGRAMS =
doc_DATA =
man_MANS =
etcdir = $(sysconfdir)/awesome
etc_DATA =
iconsdir = $(pkgdatadir)/icons
dist_icons_DATA =
iconslayoutsdir = $(iconsdir)/layouts
2008-01-05 20:15:34 +01:00
dist_iconslayouts_DATA =
awesomelibdir = $(pkgdatadir)/lib
dist_awesomelib_DATA =
2008-01-04 20:49:49 +01:00
LAYOUTS =
LAYOUTS += layouts/tile.c
LAYOUTS += layouts/tile.h
LAYOUTS += layouts/floating.c
LAYOUTS += layouts/floating.h
LAYOUTS += layouts/max.c
LAYOUTS += layouts/max.h
LAYOUTS += layouts/fibonacci.c
LAYOUTS += layouts/fibonacci.h
LAYOUTS += layouts/magnifier.c
LAYOUTS += layouts/magnifier.h
2008-01-04 20:49:49 +01:00
WIDGETS =
WIDGETS += widgets/taglist.c
WIDGETS += widgets/textbox.c
WIDGETS += widgets/iconbox.c
WIDGETS += widgets/progressbar.c
WIDGETS += widgets/tasklist.c
WIDGETS += widgets/graph.c
WIDGETS += widgets/systray.c
2008-01-04 20:49:49 +01:00
doc_DATA += README
2008-01-04 20:49:49 +01:00
EXTRA_DIST += LICENSE
EXTRA_DIST += STYLE
doc_DATA += STYLE
EXTRA_DIST += build-utils/gendoc.lua
EXTRA_DIST += awful.lua
EXTRA_DIST += tabulous.lua
dist_awesomelib_DATA += awful.lua
dist_awesomelib_DATA += tabulous.lua
dist_awesomelib_DATA += awful.luac
dist_awesomelib_DATA += tabulous.luac
CLEANFILES += awful.luac
CLEANFILES += tabulous.luac
EXTRA_DIST += awesomerc.lua.in
CLEANFILES += awesomerc.lua
BUILT_SOURCES += awesomerc.lua
doc_DATA += awesomerc.lua
etc_DATA += awesomerc.lua
SUFFIXES += .lua .luac
.lua.luac:
$(LUAC) -s -o $@ $<
awesomerc.lua: $(srcdir)/awesomerc.lua.in
$(SED) -e "s|[@]iconslayoutsdir@|$(iconslayoutsdir)|;s|[@]iconsdir@|$(iconsdir)|" \
< $(srcdir)/awesomerc.lua.in > awesomerc.lua
2008-01-04 20:49:49 +01:00
2008-01-16 09:02:25 +01:00
CLEANFILES += layoutgen.h
BUILT_SOURCES += layoutgen.h
2008-01-16 13:14:31 +01:00
EXTRA_DIST += build-utils/layoutgen.sh
2008-01-16 09:02:25 +01:00
layoutgen.h: $(awesome_SOURCES)
@echo "generating layoutgen.h from layouts headers file"
$(top_srcdir)/build-utils/layoutgen.sh "$(top_srcdir)" > layoutgen.h
2008-01-16 09:02:25 +01:00
2008-01-16 08:06:59 +01:00
CLEANFILES += widgetgen.h
BUILT_SOURCES += widgetgen.h
2008-01-16 13:14:31 +01:00
EXTRA_DIST += build-utils/widgetgen.sh
2008-01-16 08:06:59 +01:00
widgetgen.h: widget.h
@echo "generating widgetgen.h from widget.h"
$(top_srcdir)/build-utils/widgetgen.sh "$(top_srcdir)" > widgetgen.h
2008-01-16 08:06:59 +01:00
A_V = awesome-version-internal
CLEANFILES += $(A_V).h
BUILT_SOURCES += $(A_V).h.stamp
$(A_V).h.stamp:
@current_ver=`$(SHELL) $(top_srcdir)/build-utils/package-version $(top_srcdir) version-stamp`; \
2008-02-27 09:09:38 +01:00
{ echo '#ifndef AWESOME_VERSION_INTERNAL'; \
echo "#define AWESOME_VERSION_INTERNAL \"$${current_ver}\""; \
echo "#endif"; } > "$(A_V).h.new"
@if test -f "$(A_V).h" \
&& cmp "$(A_V).h.new" "$(A_V).h"; then :; \
else cat "$(A_V).h.new" > "$(A_V).h"; fi; \
rm -f "$(A_V).h.new"
if USING_GCC
# If you are using gcc, and want to deactivate this default set of
# compile flags, run make with AWESOME_CFLAGS="".
2008-01-09 09:38:00 +01:00
AWESOME_CFLAGS = -std=gnu99 -pipe \
-Wall -Wextra \
-Wundef -Wshadow -Wcast-align -Wwrite-strings -Wsign-compare \
-Wunused -Winit-self -Wpointer-arith -Wredundant-decls \
-Wmissing-prototypes -Wmissing-format-attribute -Wmissing-noreturn
endif
AM_CPPFLAGS = $(pangocairo_CFLAGS) $(AWESOME_CFLAGS) \
$(GdkPixbuf_CFLAGS) $(GDK_CFLAGS) $(imlib2_CFLAGS) \
2008-03-21 16:50:17 +01:00
$(xcb_CFLAGS) $(xcb_event_CFLAGS) \
$(xcb_randr_CFLAGS) $(xcb_xinerama_CFLAGS) $(xcb_shape_CFLAGS) \
$(xcb_aux_CFLAGS) $(xcb_atom_CFLAGS) $(xcb_keysyms_CFLAGS) \
$(xcb_icccm_CFLAGS) $(dbus_CFLAGS) $(Lua_CFLAGS)
2008-01-04 20:49:49 +01:00
bin_PROGRAMS += awesome
awesome_SOURCES = \
common/socket.c common/socket.h \
common/swindow.c common/swindow.h \
common/version.c common/version.h \
common/util.c common/util.h \
common/xutil.c common/xutil.h \
common/xembed.c common/xembed.h \
common/configopts.h common/configopts.c \
common/xscreen.h common/xscreen.c \
common/draw.c common/draw.h \
common/markup.c common/markup.h \
common/list.h common/refcount.h \
structs.h \
2008-01-04 20:49:49 +01:00
client.c client.h \
systray.c systray.h \
titlebar.c titlebar.h \
placement.c placement.h \
2008-01-04 20:49:49 +01:00
focus.c focus.h \
stack.c stack.h \
cnode.c cnode.h \
2008-01-04 20:49:49 +01:00
event.c event.h \
layout.c layout.h \
keybinding.c \
keygrabber.c keygrabber.h \
awesome.c \
tag.c tag.h \
lua.c lua.h \
2008-01-04 20:49:49 +01:00
screen.c screen.h \
statusbar.c statusbar.h \
window.c window.h \
mouse.c mouse.h \
widget.c widget.h \
ewmh.c ewmh.h \
dbus.c dbus.h
2008-01-04 20:49:49 +01:00
awesome_SOURCES += $(LAYOUTS)
awesome_SOURCES += $(WIDGETS)
awesome_LDADD = $(pangocairo_LIBS) $(xcb_LIBS) $(xcb_event_LIBS) \
2008-03-21 16:50:17 +01:00
$(xcb_randr_LIBS) $(xcb_xinerama_LIBS) $(xcb_shape_LIBS) $(xcb_aux_LIBS) \
$(xcb_atom_LIBS) $(xcb_keysyms_LIBS) $(xcb_icccm_LIBS) $(dbus_LIBS)\
$(imlib2_LIBS) $(GdkPixbuf_LIBS) $(GDK_LIBS) $(Lua_LIBS) $(ev_LIBS)
2008-01-04 20:49:49 +01:00
bin_PROGRAMS += awesome-client
awesome_client_SOURCES = \
2008-02-27 09:07:52 +01:00
awesome-client.c \
common/socket.c common/socket.h \
common/version.c common/version.h \
2008-01-21 18:14:59 +01:00
common/util.c common/util.h
awesome_client_LDADD = $(readline_LIBS)
2008-03-04 20:39:21 +01:00
if HAVE_XMLTO
if HAVE_ASCIIDOC
if XMLTO_MAN_WORKS
2008-01-04 20:49:49 +01:00
man_MANS += awesome.1
man_MANS += awesome-client.1
man_MANS += awesomerc.5
endif
endif
endif
2008-01-04 20:49:49 +01:00
EXTRA_DIST += awesome.1.txt
EXTRA_DIST += awesome-client.1.txt
EXTRA_DIST += awesomerc.5.txt
2008-01-04 20:49:49 +01:00
dist_icons_DATA += icons/awesome16.png
dist_icons_DATA += icons/awesome32.png
dist_icons_DATA += icons/awesome48.png
dist_icons_DATA += icons/awesome64.png
2008-01-05 20:15:34 +01:00
dist_iconslayouts_DATA += icons/layouts/dwindle.png
dist_iconslayouts_DATA += icons/layouts/dwindlew.png
dist_iconslayouts_DATA += icons/layouts/floating.png
dist_iconslayouts_DATA += icons/layouts/floatingw.png
dist_iconslayouts_DATA += icons/layouts/max.png
dist_iconslayouts_DATA += icons/layouts/maxw.png
dist_iconslayouts_DATA += icons/layouts/spiral.png
dist_iconslayouts_DATA += icons/layouts/spiralw.png
dist_iconslayouts_DATA += icons/layouts/tile.png
dist_iconslayouts_DATA += icons/layouts/tilew.png
2008-01-17 17:04:40 +01:00
dist_iconslayouts_DATA += icons/layouts/tilebottom.png
dist_iconslayouts_DATA += icons/layouts/tilebottomw.png
2008-01-05 20:15:34 +01:00
dist_iconslayouts_DATA += icons/layouts/tileleft.png
dist_iconslayouts_DATA += icons/layouts/tileleftw.png
2008-01-17 17:04:40 +01:00
dist_iconslayouts_DATA += icons/layouts/tiletop.png
dist_iconslayouts_DATA += icons/layouts/tiletopw.png
dist_iconslayouts_DATA += icons/layouts/magnifier.png
dist_iconslayouts_DATA += icons/layouts/magnifierw.png
2008-01-05 17:32:51 +01:00
2008-01-04 20:49:49 +01:00
clean-local:
rm -f awesome*.1 awesome*.1.xml awesome*.5 awesome*.5.xml
2008-01-04 20:49:49 +01:00
SUFFIXES += .1.xml .1
SUFFIXES += .5.xml .5
2008-01-04 20:49:49 +01:00
if HAVE_XMLTO
.1.xml.1:
$(XMLTO) man $<
.5.xml.5:
$(XMLTO) man $<
2008-01-04 20:49:49 +01:00
endif
SUFFIXES += .1.txt .1.xml
SUFFIXES += .5.txt .5.xml
2008-01-04 20:49:49 +01:00
if HAVE_ASCIIDOC
CLEANFILES += apidocgen.txt
BUILT_SOURCES += apidocgen.txt
APIDOCSOURCES=$(shell grep -l 'const struct luaL_reg' $(awesome_SOURCES))
apidocgen.txt: $(APIDOCSOURCES) build-utils/gendoc.lua
cat $(APIDOCSOURCES) | $(LUA) $(top_srcdir)/build-utils/gendoc.lua > apidocgen.txt
2008-01-04 20:49:49 +01:00
.1.txt.1.xml:
$(ASCIIDOC) -d manpage -b docbook -o $@ $<
awesomerc.5.xml: apidocgen.txt
.5.txt.5.xml:
$(ASCIIDOC) -d manpage -b docbook -o $@ $<
2008-01-04 20:49:49 +01:00
endif
# Check that package version matches git version before creating dist tarballs
dist-hook: git-version-check
distcheck-hook: git-version-check
# Note: We cannot run autogen.sh from here, because we would need some way to
# restart the whole dist process from the start and there is none.
EXTRA_DIST += build-utils/package-version
git-version-check:
@git_ver=`$(top_srcdir)/build-utils/package-version $(top_srcdir) version-stamp`; \
if test "x$${git_ver}" = "x$(PACKAGE_VERSION)"; then :; else \
echo "ERROR: PACKAGE_VERSION and 'git describe' version do not match:"; \
echo " current 'git describe' version: $${git_ver}"; \
echo " current PACKAGE_VERSION: $(PACKAGE_VERSION)"; \
echo "Update PACKAGE_VERSION by running $(top_srcdir)/autogen.sh."; \
exit 1; \
fi
# Version stamp files can only exist in tarball source trees.
#
# So there is no need to generate them anywhere else or to clean them
# up anywhere.
dist-hook:
echo "$(PACKAGE_VERSION)" > "$(distdir)/version-stamp"
2008-01-04 20:49:49 +01:00
EXTRA_DIST += awesome.doxygen.in
# Workaround for buggy pre-1.5.3 doxygen.
#
# Some pre-1.5.3 versions of doxygen segfault on reading these lines.
# Call make with DOXYGEN_SEGFAULT=-segfault as a workaround.
CLEANFILES += awesome.doxygen-segfault
awesome.doxygen-segfault: awesome.doxygen
$(SED) '/^QT_AUTOBRIEF/d; /^EXTRACT_ANON_NSPACES/d; /^HTML_DYNAMIC_SECTIONS/d' \
< awesome.doxygen > awesome.doxygen-segfault
if HAVE_DOXYGEN
doc: doc/html/index.html
doc/html/index.html: awesome.doxygen$(DOXYGEN_SEGFAULT) $(awesome_SOURCES) $(awesome_client_SOURCES)
$(DOXYGEN) awesome.doxygen$(DOXYGEN_SEGFAULT)
endif
# Presuming we are running awesome on this screen, and this is screen 0, ...
# ...we replace the running awesome instance by a freshly compiled one.
restart-uninstalled: awesome awesome-client
echo "awesome.restart()" | "$${PWD}/awesome-client"
# ...we replace the running awesome instance by the last installed one.
restart-installed:
screen=`echo "$${DISPLAY}" | sed 's/.*:[0-9]\.\([0-9]*\)$$/\1/; s/.*:\([0-9]*\)$$/0/'`; \
echo "awesome.restart()" | "$(DESTDIR)$(bindir)/awesome-client"