### -*-makefile-*- ### ### Build script for Catacomb ### ### (c) 2013 Straylight/Edgeware ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of Catacomb. ### ### Catacomb is free software; you can redistribute it and/or modify ### it under the terms of the GNU Library General Public License as ### published by the Free Software Foundation; either version 2 of the ### License, or (at your option) any later version. ### ### Catacomb is distributed in the hope that it will be useful, ### but WITHOUT ANY WARRANTY; without even the implied warranty of ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ### GNU Library General Public License for more details. ### ### You should have received a copy of the GNU Library General Public ### License along with Catacomb; if not, write to the Free ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ### MA 02111-1307, USA. include $(top_srcdir)/vars.am ACLOCAL_AMFLAGS = -Im4 SUBDIRS = ###-------------------------------------------------------------------------- ### The main library. lib_LTLIBRARIES = libcatacomb.la libcatacomb_la_LDFLAGS = -version-info $(LIBTOOL_VERSION_INFO) libcatacomb_la_LIBADD = $(CATACOMB_LIBS) $(mLib_LIBS) libcatacomb_la_SOURCES = ## Basic utilities. SUBDIRS += base libcatacomb_la_LIBADD += base/libbase.la ## Mathematical infrastructure. SUBDIRS += math libcatacomb_la_LIBADD += math/libmath.la ## Symmetric cryptography. SUBDIRS += symm libcatacomb_la_LIBADD += symm/libsymm.la ## Key management. SUBDIRS += key libcatacomb_la_LIBADD += key/libkey.la ## Miscellaneous cryptography. SUBDIRS += misc libcatacomb_la_LIBADD += misc/libmisc.la ## Public-key cryptography. SUBDIRS += pub libcatacomb_la_LIBADD += pub/libpub.la ## Random number generators and related functionality. SUBDIRS += rand libcatacomb_la_LIBADD += rand/librand.la ## At this point, we should construct the library. SUBDIRS += . ###-------------------------------------------------------------------------- ### Ancillary programs. SUBDIRS += progs ###-------------------------------------------------------------------------- ### The pkg-config file. pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = catacomb.pc EXTRA_DIST += catacomb.pc.in CLEANFILES += catacomb.pc catacomb.pc: catacomb.pc.in Makefile $(SUBST) $(srcdir)/catacomb.pc.in >$@.new $(SUBSTITUTIONS) && \ mv $@.new $@ ###-------------------------------------------------------------------------- ### Release tweaking. ## Release number. dist-hook:: echo $(VERSION) >$(distdir)/RELEASE ## Additional build tools. EXTRA_DIST += config/auto-version EXTRA_DIST += config/confsubst ###-------------------------------------------------------------------------- ### Debian. ## General stuff. EXTRA_DIST += debian/rules EXTRA_DIST += debian/control EXTRA_DIST += debian/changelog EXTRA_DIST += debian/copyright EXTRA_DIST += debian/compat ## catacomb2 EXTRA_DIST += debian/catacomb2.install ## catacomb-bin EXTRA_DIST += debian/catacomb-bin.install EXTRA_DIST += debian/catacomb-bin.prerm EXTRA_DIST += debian/catacomb-bin.postinst EXTRA_DIST += debian/catacomb-bin.config EXTRA_DIST += debian/catacomb-bin.templates ## catacomb-dev EXTRA_DIST += debian/catacomb-dev.install ###----- That's all, folks --------------------------------------------------