### -*-makefile-*- ### ### Common build-system definitions ### ### (c) 2024 Straylight/Edgeware ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of Xyla, a library of binary trees. ### ### Xyla is free software: you can redistribute it and/or modify it under ### the terms of the GNU Lesser General Public License as published by the ### Free Software Foundation; either version 3 of the License, or (at your ### option) any later version. ### ### Xyla 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 Lesser General Public ### License for more details. ### ### You should have received a copy of the GNU Lesser General Public ### License along with Xyla. If not, see . ###-------------------------------------------------------------------------- ### Initial values for common variables. CLEANFILES = EXTRA_DIST = LDADD = pkgconfdir = $(libdir)/pkgconfig pkgconf_DATA = ###-------------------------------------------------------------------------- ### Standard configuration substitutions. ## Substitute tags in files. confsubst = $(top_srcdir)/config/confsubst SUBSTITUTIONS = \ prefix=$(prefix) exec_prefix=$(exec_prefix) \ libdir=$(libdir) includedir=$(includedir) \ PACKAGE=$(PACKAGE) VERSION=$(VERSION) v_subst = $(v_subst_@AM_V@) v_subst_ = $(v_subst_@AM_DEFAULT_V@) v_subst_0 = @echo " SUBST $@"; SUBST = $(v_subst)$(confsubst) ###----- That's all, folks --------------------------------------------------