### -*-makefile-*- ### ### Common variable definitions for build scripts ### ### (c) 2015 Straylight/Edgeware ### ###----- Licensing notice --------------------------------------------------- ### ### This file is part of the Sensible Object Design, an object system for C. ### ### SOD is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License as published by ### the Free Software Foundation; either version 2 of the License, or ### (at your option) any later version. ### ### SOD 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 General Public License for more details. ### ### You should have received a copy of the GNU General Public License ### along with SOD; if not, write to the Free Software Foundation, ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ###-------------------------------------------------------------------------- ### Miscellaneous useful definitions. ## Installation directories. pkglispsrcdir = $(lispsrcdir)/$(PACKAGE) ###-------------------------------------------------------------------------- ### Initial values for common variables. EXTRA_DIST = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = SUFFIXES = BUILT_SOURCES = bin_PROGRAMS = check_PROGRAMS = pkginclude_HEADERS = TESTS = dist_man_MANS = CLEANFILES += $(BUILT_SOURCES) ###-------------------------------------------------------------------------- ### Include and library path. SOD_INCLUDES = \ -I$(top_srcdir)/lib -I$(top_builddir)/lib AM_CPPFLAGS = $(SOD_INCLUDES) LDADD = $(top_builddir)/lib/libsod.la ###-------------------------------------------------------------------------- ### Standard configuration substitutions. ## Substitute tags in files. confsubst = $(top_srcdir)/config/confsubst SUBSTITUTIONS = \ prefix=$(prefix) exec_prefix=$(exec_prefix) \ libdir=$(libdir) includedir=$(includedir) \ bindir=$(bindir) sbindir=$(sbindir) \ srcdir=$(srcdir) \ PACKAGE=$(PACKAGE) VERSION=$(VERSION) ASDF_VERSION=$(ASDF_VERSION) V_SUBST = $(V_SUBST_@AM_V@) V_SUBST_ = $(V_SUBST_@AM_DEFAULT_V@) V_SUBST_0 = @echo " SUBST $@"; SUBST = $(V_SUBST)$(confsubst) ###-------------------------------------------------------------------------- ### Translating SOD input files. ## The tool location. SOD = $(top_builddir)/src/sod ## Silent rules treatment. V_SOD_c = $(V_SOD_c_@AM_V@) V_SOD_c_ = $(V_SOD_c_@AM_DEFAULT_V@) V_SOD_c_0 = @echo " SOD[c] $@"; V_SOD_h = $(V_SOD_h_@AM_V@) V_SOD_h_ = $(V_SOD_h_@AM_DEFAULT_V@) V_SOD_h_0 = @echo " SOD[h] $@"; ## Build rules. SUFFIXES += .c .h .sod .sod.c: $(SOD); $(V_SOD_c)$(SOD) -tc $< .sod.h: $(SOD); $(V_SOD_h)$(SOD) -th $< ###-------------------------------------------------------------------------- ### Silent rules for Lisp. V_DUMP = $(V_DUMP_@AM_V@) V_DUMP_ = $(V_DUMP_@AM_DEFAULT_V@) V_DUMP_0 = @echo " DUMP $@"; V_TEST = $(V_TEST_@AM_V@) V_TEST_ = $(V_TEST_@AM_DEFAULT_V@) V_TEST_0 = @echo " TEST $@"; ###----- That's all, folks --------------------------------------------------