source: trunk/essentials/sys-devel/automake-1.4/tests/condman.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 261 bytes
Line 
1#! /bin/sh
2
3# Make sure conditionals work with man pages.
4. $srcdir/defs || exit 1
5
6cat >> configure.in << 'END'
7AM_CONDITIONAL(FRED, true)
8END
9
10cat > Makefile.am << 'END'
11if FRED
12man_MANS = foo.1
13else
14man_MANS = joe.1
15endif
16END
17
18: > foo.1
19: > joe.1
20
21$AUTOMAKE
Note: See TracBrowser for help on using the repository browser.