1# If we don't build the client, there's no need to install anything from the
2# art directory.
3if BUILD_CLIENT
4SUBDIRS = art doc levels macros src
5else
6SUBDIRS = doc levels macros src
7endif
8
9docdir = @docdir@
10doc_DATA = COPYING README
11
12EXTRA_DIST = $(doc_DATA) autogen.sh
13
14AUTOMAKE_OPTIONS = 1.5 dist-bzip2
15
16# should be kept in sync with autogen.sh
17ACLOCAL_AMFLAGS = -I macros
18
19# Create Debian package
20dist-deb:
21	rm -f debian
22	ln -s dist/debian debian
23	dpkg-buildpackage -rfakeroot -us -uc
24	rm -f debian
25