chiark / gitweb /
7cb564a19013895be713030f404669cc563e7e7d
[sod] / lib / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Build script for SOD runtime library
4 ###
5 ### (c) 2015 Straylight/Edgeware
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the Sensible Object Design, an object system for C.
11 ###
12 ### SOD 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 ### 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
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 SOD; if not, write to the Free
24 ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 ### MA 02111-1307, USA.
26
27 include $(top_srcdir)/vars.am
28
29 ###--------------------------------------------------------------------------
30 ### The library.
31
32 lib_LTLIBRARIES          = libsod.la
33 libsod_la_LDFLAGS        = -version-info $(LIBTOOL_VERSION_INFO)
34
35 libsod_la_SOURCES        =
36
37 nodist_libsod_la_SOURCES =
38 nodist_pkginclude_HEADERS=
39
40 ###--------------------------------------------------------------------------
41 ### The source files.
42
43 pkginclude_HEADERS      += sod.h
44 libsod_la_SOURCES       += sod.c
45 dist_man_MANS           += sod.3
46
47 ###--------------------------------------------------------------------------
48 ### Generated builtin module.
49
50 nodist_libsod_la_SOURCES+= sod-base.c
51 nodist_pkginclude_HEADERS+= sod-base.h
52 BUILT_SOURCES           += $(nodist_libsod_la_SOURCES) \
53                                 $(nodist_pkginclude_HEADERS)
54
55 sod-base.c: $(SOD); $(V_SOD_c)$(SOD) -tc --builtin
56 sod-base.h: $(SOD); $(V_SOD_h)$(SOD) -th --builtin
57
58 ###--------------------------------------------------------------------------
59 ### Other manual pages.
60
61 dist_man_MANS           += sod-structs.3
62
63 ###----- That's all, folks --------------------------------------------------