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
* depcomp (ddashmd): Removed case.
[automake.git]
/
tests
/
seenc.test
blob
87bfc548496c870f609d7eb4d010fda00ad8aa96
1
#! /bin/sh
2
3
# Test to make sure C-but-not-CC error works.
4
5
.
$srcdir
/
defs ||
exit
1
6
7
cat
>>
configure.
in
<<
'END'
8
LIBOBJS
=
"
$LIBOBJS
fsusage.o mountlist.o"
9
END
10
11
cat
>
Makefile.am
<<
'END'
12
bin_PROGRAMS
=
foo
13
foo_SOURCES
=
x.C
14
foo_LDADD
=
@LIBOBJS@
15
END
16
17
: >
fsusage.c
18
: >
mountlist.c
19
20
$AUTOMAKE
>
out
2
>&
1
&&
exit
1
21
exit
0