diff options
author | Christophe Fergeau | 2017-04-20 12:38:09 +0200 |
---|---|---|
committer | Nikias Bassen | 2017-04-20 12:38:09 +0200 |
commit | 054578a2d842f53a061c0a6ddaf6bfc849be0738 (patch) | |
tree | 135e0569d64044555c8c6b80e183ead923dedaf1 /Makefile.am | |
parent | d0193690c8d7b8b4adb8fac4fc9289ebe07576f3 (diff) | |
download | libplist-054578a2d842f53a061c0a6ddaf6bfc849be0738.tar.gz libplist-054578a2d842f53a061c0a6ddaf6bfc849be0738.tar.bz2 |
autofoo: Ensure that 'make distcheck' doesn't fail when cython is not installed
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 8ac4acf..670e7a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,9 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = libcnary src include tools $(CYTHON_SUB) test +SUBDIRS = libcnary src include tools test +if HAVE_CYTHON +SUBDIRS += cython +endif docs/html: $(top_builddir)/doxygen.cfg $(top_srcdir)/include/plist/*.h rm -rf docs |