chiark / gitweb /
codec/{base32,hex}.h: Include `codec.h'.
[mLib] / struct / Makefile.am
CommitLineData
18c831dc
MW
1### -*-makefile-*-
2###
3### Build script for data structures
4###
5### (c) 2009 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the mLib utilities library.
11###
12### mLib is free software; you can redistribute it and/or modify
13### it under the terms of the GNU Library General Public License as
14### published by the Free Software Foundation; either version 2 of the
15### License, or (at your option) any later version.
16###
17### mLib is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU Library General Public License for more details.
21###
22### You should have received a copy of the GNU Library General Public
23### License along with mLib; if not, write to the Free
24### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25### MA 02111-1307, USA.
26
27include $(top_srcdir)/vars.am
28
29noinst_LTLIBRARIES = libstruct.la
30libstruct_la_SOURCES =
31
32###--------------------------------------------------------------------------
33### Component files.
34
35## Dynamic strings.
36pkginclude_HEADERS += dstr.h dspool.h
37libstruct_la_SOURCES += dstr.c dstr-putf.c dspool.c
38LIBMANS += dstr.3 dspool.3
39
40## Buffers.
41pkginclude_HEADERS += buf.h
42libstruct_la_SOURCES += buf.c buf-dstr.c
43LIBMANS += buf.3
44
45## Dynamic arrays.
46pkginclude_HEADERS += darray.h
47libstruct_la_SOURCES += darray.c
48LIBMANS += darray.3
49
7cf5c72a
MW
50check_PROGRAMS += t/darray.t
51t_darray_t_SOURCES = t/da-test.c
52t_darray_t_CPPFLAGS = $(TEST_CPPFLAGS)
53t_darray_t_LDFLAGS = -static
54
55EXTRA_DIST += t/da-gtest.py
18c831dc
MW
56
57## Hash tables.
58pkginclude_HEADERS += hash.h
59libstruct_la_SOURCES += hash.c
60LIBMANS += hash.3
61
62## Symbol tables.
63pkginclude_HEADERS += sym.h
64libstruct_la_SOURCES += sym.c
65LIBMANS += sym.3
66
7cf5c72a
MW
67check_PROGRAMS += t/sym.t
68t_sym_t_SOURCES = t/sym-test.c
69t_sym_t_CPPFLAGS = $(TEST_CPPFLAGS)
70t_sym_t_LDFLAGS = -static
18c831dc 71
7cf5c72a 72EXTRA_DIST += t/sym-gtest.py
18c831dc
MW
73
74## Atoms.
75pkginclude_HEADERS += atom.h
76libstruct_la_SOURCES += atom.c
77LIBMANS += atom.3
78
79## Association tables.
80pkginclude_HEADERS += assoc.h
81libstruct_la_SOURCES += assoc.c
82LIBMANS += assoc.3
83
7cf5c72a
MW
84check_PROGRAMS += t/assoc.t
85t_assoc_t_SOURCES = t/assoc-test.c
86t_assoc_t_CPPFLAGS = $(TEST_CPPFLAGS)
87t_assoc_t_LDFLAGS = -static
18c831dc
MW
88
89###----- That's all, folks --------------------------------------------------