vars.am: Some reformatting.
[catacomb] / Makefile.am
CommitLineData
7db733d4
MW
1### -*-makefile-*-
2###
3### Build script for Catacomb
4###
5### (c) 2013 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of Catacomb.
11###
12### Catacomb 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### Catacomb 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 Catacomb; if not, write to the Free
24### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25### MA 02111-1307, USA.
26
0f00dc4c 27include $(top_srcdir)/vars.am
1c3d4cf5 28ACLOCAL_AMFLAGS = -Im4
7db733d4
MW
29
30SUBDIRS =
31
7db733d4
MW
32###--------------------------------------------------------------------------
33### The main library.
34
0f00dc4c 35lib_LTLIBRARIES = libcatacomb.la
90db641c
MW
36libcatacomb_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) \
37 -no-undefined
02fe0bac
MW
38libcatacomb_la_LIBADD = $(MATHLIBS) $(PIXIE_LIBS) $(CATACOMB_LIBS) \
39 $(mLib_LIBS)
7db733d4 40libcatacomb_la_SOURCES =
7db733d4 41
0f00dc4c
MW
42## Basic utilities.
43SUBDIRS += base
44libcatacomb_la_LIBADD += base/libbase.la
7db733d4 45
0f00dc4c
MW
46## Mathematical infrastructure.
47SUBDIRS += math
48libcatacomb_la_LIBADD += math/libmath.la
7db733d4 49
0f00dc4c
MW
50## Symmetric cryptography.
51SUBDIRS += symm
52libcatacomb_la_LIBADD += symm/libsymm.la
7db733d4 53
0f00dc4c
MW
54## Key management.
55SUBDIRS += key
56libcatacomb_la_LIBADD += key/libkey.la
7db733d4 57
0f00dc4c
MW
58## Miscellaneous cryptography.
59SUBDIRS += misc
60libcatacomb_la_LIBADD += misc/libmisc.la
7db733d4 61
0f00dc4c
MW
62## Public-key cryptography.
63SUBDIRS += pub
64libcatacomb_la_LIBADD += pub/libpub.la
7db733d4 65
0f00dc4c
MW
66## Random number generators and related functionality.
67SUBDIRS += rand
68libcatacomb_la_LIBADD += rand/librand.la
7db733d4 69
0f00dc4c
MW
70## At this point, we should construct the library.
71SUBDIRS += .
7db733d4
MW
72
73###--------------------------------------------------------------------------
0f00dc4c 74### Ancillary programs.
7db733d4 75
0f00dc4c 76SUBDIRS += progs
7db733d4
MW
77
78###--------------------------------------------------------------------------
79### The pkg-config file.
80
81pkgconfigdir = $(libdir)/pkgconfig
82pkgconfig_DATA = catacomb.pc
83EXTRA_DIST += catacomb.pc.in
84CLEANFILES += catacomb.pc
85
86catacomb.pc: catacomb.pc.in Makefile
87 $(SUBST) $(srcdir)/catacomb.pc.in >$@.new $(SUBSTITUTIONS) && \
88 mv $@.new $@
89
90###--------------------------------------------------------------------------
91### Release tweaking.
92
93## Release number.
94dist-hook::
95 echo $(VERSION) >$(distdir)/RELEASE
96
97## Additional build tools.
f23d8ad2 98EXTRA_DIST += build-setup
ba6e6b64 99EXTRA_DIST += config/auto-version
0f00dc4c 100EXTRA_DIST += config/confsubst
7db733d4 101
f23d8ad2
MW
102## Documentation files.
103EXTRA_DIST += README.cipher
104EXTRA_DIST += README.hash
105EXTRA_DIST += README.mp
106EXTRA_DIST += README.random
107
7db733d4
MW
108###--------------------------------------------------------------------------
109### Debian.
110
111## General stuff.
112EXTRA_DIST += debian/rules
113EXTRA_DIST += debian/control
114EXTRA_DIST += debian/changelog
115EXTRA_DIST += debian/copyright
6000faf9 116EXTRA_DIST += debian/compat
eea933cd 117EXTRA_DIST += debian/source/format
6000faf9
MW
118
119## catacomb2
120EXTRA_DIST += debian/catacomb2.install
7db733d4
MW
121
122## catacomb-bin
6000faf9 123EXTRA_DIST += debian/catacomb-bin.install
7db733d4
MW
124EXTRA_DIST += debian/catacomb-bin.prerm
125EXTRA_DIST += debian/catacomb-bin.postinst
126EXTRA_DIST += debian/catacomb-bin.config
127EXTRA_DIST += debian/catacomb-bin.templates
128
6000faf9
MW
129## catacomb-dev
130EXTRA_DIST += debian/catacomb-dev.install
131
7db733d4 132###----- That's all, folks --------------------------------------------------