Changeset 1693
- Timestamp:
- Jan 2, 2009, 11:20:44 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r1692 r1693 70 70 AC_PROG_INSTALL 71 71 AC_PROG_SED 72 73 # some tests require autotools 74 AC_MSG_NOTICE([checking for autotools]) 75 AC_CHECK_PROG([have_automake], [automake], [yes], [no]) 76 AC_CHECK_PROG([have_autoconf], [autoconf], [yes], [no]) 77 AC_CHECK_PROG([have_libtool], [libtool], [yes], [no]) 78 AM_CONDITIONAL([HAVE_AUTOTOOLS], 79 [test x$have_automake = xyes && 80 test x$have_autoconf = xyes && 81 test x$have_libtool = xyes]) 72 82 73 83 AC_MSG_NOTICE(dnl … … 284 294 285 295 296 AC_CONFIG_FILES([test/yat_m4_test.sh], [chmod +x test/yat_m4_test.sh]) 286 297 AC_CONFIG_FILES([Makefile 287 298 build_support/Makefile -
trunk/test/Makefile.am
r1643 r1693 7 7 # Copyright (C) 2005 Jari Häkkinen, Peter Johansson 8 8 # Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 # Copyright (C) 2009 Peter Johansson 9 10 # 10 11 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 28 29 29 30 check_LTLIBRARIES = libyattest.la 31 32 INSTALLCHECK_TARGETS = 33 34 .PHONY: $(INSTALLCHECK_TARGETS) 35 36 installcheck-local: check-yat_m4 37 38 clean-local:; rm -rf yathello 39 40 if HAVE_AUTOTOOLS 41 INSTALLCHECK_TARGETS += check-yat_m4 42 endif 43 check-yat_m4: yat_m4_test.sh 44 ./yat_m4_test.sh 30 45 31 46 check_PROGRAMS = alignment_test averager_test \
Note: See TracChangeset
for help on using the changeset viewer.