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
typo + new comment
[automake.git]
/
tests
/
pluseq7.test
blob
95d4b68bb3872335609f1e8c8f73a4569c91977d
1
#! /bin/sh
2
3
# Test that `+=' fails when required.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>>
configure.
in
<<
'END'
8
AC_PROG_CC
9
AC_PROG_RANLIB
10
END
11
12
# If you do this in a real Makefile.am, I will kill you.
13
cat
>
Makefile.am
<<
'END'
14
lib_LIBRARIES
=
libq.a
15
libq_a_SOURCES
=
q.c
16
AR
+=
qq
17
END
18
19
: >
q.c
20
21
$ACLOCAL
||
exit
1
22
$AUTOMAKE
&&
exit
1
23
exit
0