repo.or.cz
/
automake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix for PR automake/14:
[automake.git]
/
tests
/
libobj3.test
blob
3c7ca654bd92a53c98f6af4cb123db640ceb04ec
1
#! /bin/sh
2
3
# Test to make sure LIBOBJS actually set in configure.in if seen.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>>
configure.
in
<<
'END'
8
AC_PROG_RANLIB
9
END
10
11
cat
>
Makefile.am
<<
'END'
12
noinst_LIBRARIES
=
libtu.a
13
libtu_a_SOURCES
=
14
libtu_a_LIBADD
=
@LIBOBJS@
15
END
16
17
$AUTOMAKE
&&
exit
1
18
exit
0