doc/clang.tex: Fix incorrect description category.
[sod] / lib / Makefile.am
... / ...
CommitLineData
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
27include $(top_srcdir)/vars.am
28
29###--------------------------------------------------------------------------
30### The library.
31
32lib_LTLIBRARIES = libsod.la
33libsod_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO)
34
35libsod_la_SOURCES =
36
37nodist_libsod_la_SOURCES =
38nodist_pkginclude_HEADERS =
39
40###--------------------------------------------------------------------------
41### The source files.
42
43pkginclude_HEADERS += keyword.h
44libsod_la_SOURCES += keyword.c keyword-hosted.c
45man_MANS += keyword.3
46CLEANFILES += keyword.3
47EXTRA_DIST += keyword.3.in
48
49pkginclude_HEADERS += sod.h
50libsod_la_SOURCES += sod.c sod-hosted.c
51man_MANS += sod.3
52CLEANFILES += sod.3
53EXTRA_DIST += sod.3.in
54
55###--------------------------------------------------------------------------
56### Generated builtin module.
57
58nodist_libsod_la_SOURCES += sod-base.c
59nodist_pkginclude_HEADERS += sod-base.h
60BUILT_SOURCES += $(nodist_libsod_la_SOURCES) \
61 $(nodist_pkginclude_HEADERS)
62
63sod-base.c: $(SOD); $(V_SOD_c)$(SOD) -tc --builtin
64sod-base.h: $(SOD); $(V_SOD_h)$(SOD) -th --builtin
65
66###--------------------------------------------------------------------------
67### Package-configuration file.
68
69pkgconfigdir = $(libdir)/pkgconfig
70pkgconfig_DATA = sod.pc
71CLEANFILES += sod.pc
72EXTRA_DIST += sod.pc.in
73
74sod.pc: sod.pc.in Makefile
75 $(SUBST) $(srcdir)/sod.pc.in >$@.new $(SUBSTITUTIONS) && mv $@.new $@
76
77###--------------------------------------------------------------------------
78### Autoconf machinery.
79
80aclocaldir = $(datadir)/aclocal
81dist_aclocal_DATA = sod.m4
82
83###--------------------------------------------------------------------------
84### Other manual pages.
85
86man_MANS += sod-structs.3
87CLEANFILES += sod-structs.3
88EXTRA_DIST += sod-structs.3.in
89
90###----- That's all, folks --------------------------------------------------