Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/linked-list-tests @ 8631:4eb9b582db2e
Link test program with libintl.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Wed, 04 Apr 2007 00:45:45 +0000 |
parents | cca53b88babb |
children | ae4587be462b |
rev | line source |
---|---|
6978
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Files: |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 tests/test-linked_list.c |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Depends-on: |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 array-list |
8296
cca53b88babb
Avoid link error due to program_name.
Bruno Haible <bruno@clisp.org>
parents:
8239
diff
changeset
|
6 progname |
6978
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 configure.ac: |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
9 |
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
10 Makefile.am: |
8239 | 11 TESTS += test-linked_list |
6978
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 check_PROGRAMS += test-linked_list |
8631
4eb9b582db2e
Link test program with libintl.
Bruno Haible <bruno@clisp.org>
parents:
8296
diff
changeset
|
13 test_linked_list_LDADD = @LIBINTL@ $(LDADD) |
6978
ec26419f7c0b
Sequential list data type implemented by a linked list.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 |