1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
SUBDIRS = libkeybinder docs
if HAVE_PYTHON
SUBDIRS += python-keybinder
endif
if HAVE_LUA
SUBDIRS += lua-keybinder
endif
EXTRA_DIST = \
examples/Makefile \
examples/README \
examples/example.py \
examples/example.lua \
examples/example_gi.lua \
examples/lminigtk.c \
examples/keybinder.vapi \
examples/vexample.vala \
examples/main.c
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
gnome-doc-utils.make
ACLOCAL_AMFLAGS = -I m4
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection --enable-gtk-doc
|