diff options
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | tests/Makefile | 8 |
3 files changed, 6 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am index 7dd2fbe..6f53337 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,7 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src abs reference +SUBDIRS += tests build zexydir=$(pkglibdir) dist_zexy_DATA = \ diff --git a/configure.ac b/configure.ac index d5ffd1c..c85e048 100644 --- a/configure.ac +++ b/configure.ac @@ -1,13 +1,15 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([zexy], [2.2.4], [zmoelnig@iem.at], [zexy], [http://get.puredata.info/zexy]) +AC_INIT([zexy], [2.2.5], [zmoelnig@iem.at], [zexy], [http://get.puredata.info/zexy]) AM_INIT_AUTOMAKE([1.10 foreign]) -AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile src/Makefile abs/Makefile reference/Makefile]) AC_PROG_LIBTOOL() AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([Makefile src/Makefile abs/Makefile reference/Makefile]) +AC_CONFIG_FILES([tests/Makefile build/Makefile]) + AC_CONFIG_SRCDIR([src/zexy.c]) IEM_OPERATING_SYSTEM diff --git a/tests/Makefile b/tests/Makefile deleted file mode 100644 index ff76f0c..0000000 --- a/tests/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -default: nogui - - -nogui: - sh runtests.sh - -gui: - sh runtests.sh -gui |