File: subdir.test

package info (click to toggle)
automake 1%3A1.4-p4-1.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,312 kB
  • ctags: 21
  • sloc: perl: 5,516; sh: 5,218; ansic: 404; makefile: 196
file content (27 lines) | stat: -rwxr-xr-x 384 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/sh

# Test to make sure install-sh and mkinstalldirs correctly found in
# subdirs.

. $srcdir/defs || exit 1

mkdir zot

cat > configure.in << 'END'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_OUTPUT(Makefile zot/Makefile)
END

cat > Makefile.am << 'END'
SUBDIRS = zot
END

cat > zot/Makefile.am << 'END'
pkgdata_DATA =
END

$AUTOMAKE