chiark / gitweb /
lib/Makefile.am: Associate man pages with the code where possible.
[sod] / lib / Makefile.am
CommitLineData
97a9a385
MW
1### -*-makefile-*-
2###
3### Build script for SOD runtime library
4###
5### (c) 2015 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
e0808c47 10### This file is part of the Sensible Object Design, an object system for C.
97a9a385
MW
11###
12### SOD is free software; you can redistribute it and/or modify
65aaa02c
MW
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.
97a9a385
MW
16###
17### SOD 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
65aaa02c 20### GNU Library General Public License for more details.
97a9a385 21###
65aaa02c
MW
22### You should have received a copy of the GNU Library General Public
23### License along with SOD; if not, write to the Free
24### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25### MA 02111-1307, USA.
97a9a385 26
b5d086c2
MW
27include $(top_srcdir)/vars.am
28
29###--------------------------------------------------------------------------
30### The library.
31
97a9a385
MW
32lib_LTLIBRARIES = libsod.la
33libsod_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO)
34
35libsod_la_SOURCES =
97a9a385
MW
36
37nodist_libsod_la_SOURCES =
b5d086c2 38nodist_pkginclude_HEADERS=
97a9a385
MW
39
40###--------------------------------------------------------------------------
41### The source files.
42
b5d086c2 43pkginclude_HEADERS += sod.h
c1aef030 44libsod_la_SOURCES += sod.c
2761f5cf 45dist_man_MANS += sod.3
97a9a385
MW
46
47###--------------------------------------------------------------------------
48### Generated builtin module.
49
97a9a385 50nodist_libsod_la_SOURCES+= sod-base.c
b5d086c2
MW
51nodist_pkginclude_HEADERS+= sod-base.h
52BUILT_SOURCES += $(nodist_libsod_la_SOURCES) \
53 $(nodist_pkginclude_HEADERS)
97a9a385 54
173090e6
MW
55sod-base.c: $(SOD); $(V_SOD_c)$(SOD) -tc --builtin
56sod-base.h: $(SOD); $(V_SOD_h)$(SOD) -th --builtin
97a9a385 57
47de28ae 58###--------------------------------------------------------------------------
2761f5cf 59### Other manual pages.
47de28ae 60
2761f5cf 61dist_man_MANS += sod-structs.3
47de28ae 62
97a9a385 63###----- That's all, folks --------------------------------------------------