File: all.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 (15 lines) | stat: -rwxr-xr-x 335 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

# Test to make sure all-local and other -local targets work correctly.

. $srcdir/defs || exit 1

for target in all install-exec install-data uninstall; do
   echo "Doing $target"
   echo "${target}-local:" > Makefile.am

   $AUTOMAKE || exit 1

   fgrep "${target}-local ${target}-local" Makefile.in && exit 1
done
exit 0