* subdir3.test: Allow any number of dependencies.
[automake.git] / m4 / cond.m4
blob4eb2e9d11fac5cf434e91008ae98ace3f9e196c5
1 # Define a conditional.
3 AC_DEFUN([AM_CONDITIONAL],
4 [AC_SUBST($1_TRUE)
5 AC_SUBST($1_FALSE)
6 if $2; then
7   $1_TRUE=
8   $1_FALSE='#'
9 else
10   $1_TRUE='#'
11   $1_FALSE=
12 fi])