2013-12-10 14:54:34 +00:00
|
|
|
default: all
|
|
|
|
|
|
|
|
|
|
|
|
# Get rid of default suffixes. FIXME: is this a good idea?
|
|
|
|
.SUFFIXES:
|
|
|
|
|
|
|
|
|
|
|
|
# Initialise some variables.
|
2014-02-01 11:20:06 +00:00
|
|
|
bin-scripts :=
|
|
|
|
noinst-scripts :=
|
2014-01-31 14:33:12 +00:00
|
|
|
man-pages :=
|
2014-02-01 11:20:06 +00:00
|
|
|
install-tests :=
|
2014-01-09 21:14:34 +00:00
|
|
|
OS = $(shell uname -s)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
2014-09-11 13:28:30 +00:00
|
|
|
# Hack to define a literal space.
|
|
|
|
space :=
|
|
|
|
space +=
|
|
|
|
|
|
|
|
|
2014-09-11 13:47:31 +00:00
|
|
|
# Hack to define a literal newline.
|
|
|
|
define newline
|
|
|
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2013-12-17 11:13:48 +00:00
|
|
|
# Default installation paths.
|
|
|
|
prefix ?= /usr/local
|
|
|
|
libdir ?= $(prefix)/lib
|
|
|
|
bindir ?= $(prefix)/bin
|
|
|
|
libexecdir ?= $(prefix)/libexec
|
|
|
|
datadir ?= $(prefix)/share
|
|
|
|
localstatedir ?= $(prefix)/var
|
|
|
|
sysconfdir ?= $(prefix)/etc
|
2014-01-31 14:33:12 +00:00
|
|
|
mandir ?= $(prefix)/share/man
|
2013-12-17 11:13:48 +00:00
|
|
|
|
|
|
|
|
2014-09-05 12:17:05 +00:00
|
|
|
# Initialise support for build directories.
|
|
|
|
builddir ?=
|
|
|
|
|
|
|
|
ifdef builddir
|
|
|
|
buildprefix = $(builddir)/
|
|
|
|
else
|
|
|
|
buildprefix =
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2013-12-10 14:54:34 +00:00
|
|
|
# Pass -fPIC if we're building dynamic libraries.
|
2013-12-17 11:13:48 +00:00
|
|
|
BUILD_SHARED_LIBS ?= 1
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
ifeq ($(BUILD_SHARED_LIBS), 1)
|
2014-12-09 11:20:27 +00:00
|
|
|
ifeq (CYGWIN,$(findstring CYGWIN,$(OS)))
|
2017-04-21 14:27:27 +00:00
|
|
|
GLOBAL_CFLAGS += -U__STRICT_ANSI__ -D_GNU_SOURCE
|
|
|
|
GLOBAL_CXXFLAGS += -U__STRICT_ANSI__ -D_GNU_SOURCE
|
2014-12-09 11:20:27 +00:00
|
|
|
else
|
|
|
|
GLOBAL_CFLAGS += -fPIC
|
|
|
|
GLOBAL_CXXFLAGS += -fPIC
|
|
|
|
endif
|
2014-01-09 21:14:34 +00:00
|
|
|
ifneq ($(OS), Darwin)
|
2014-04-03 15:35:16 +00:00
|
|
|
ifneq ($(OS), SunOS)
|
2015-10-02 12:19:00 +00:00
|
|
|
ifneq ($(OS), FreeBSD)
|
|
|
|
GLOBAL_LDFLAGS += -Wl,--no-copy-dt-needed-entries
|
|
|
|
endif
|
2014-04-03 15:35:16 +00:00
|
|
|
endif
|
2014-01-09 21:14:34 +00:00
|
|
|
endif
|
2014-03-03 14:19:04 +00:00
|
|
|
SET_RPATH_TO_LIBS ?= 1
|
2013-12-10 14:54:34 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Pass -g if we want debug info.
|
2013-12-17 11:13:48 +00:00
|
|
|
BUILD_DEBUG ?= 1
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
ifeq ($(BUILD_DEBUG), 1)
|
|
|
|
GLOBAL_CFLAGS += -g
|
|
|
|
GLOBAL_CXXFLAGS += -g
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-02-01 10:31:25 +00:00
|
|
|
include mk/functions.mk
|
2014-01-10 21:31:38 +00:00
|
|
|
include mk/tracing.mk
|
2013-12-10 14:54:34 +00:00
|
|
|
include mk/clean.mk
|
|
|
|
include mk/install.mk
|
|
|
|
include mk/libraries.mk
|
|
|
|
include mk/programs.mk
|
|
|
|
include mk/patterns.mk
|
|
|
|
include mk/templates.mk
|
|
|
|
include mk/tests.mk
|
|
|
|
|
|
|
|
|
|
|
|
# Include all sub-Makefiles.
|
2014-02-04 10:02:49 +00:00
|
|
|
define include-sub-makefile
|
2013-12-12 10:24:03 +00:00
|
|
|
d := $$(patsubst %/,%,$$(dir $(1)))
|
2013-12-10 14:54:34 +00:00
|
|
|
include $(1)
|
|
|
|
endef
|
|
|
|
|
2014-02-01 11:20:06 +00:00
|
|
|
$(foreach mf, $(makefiles), $(eval $(call include-sub-makefile, $(mf))))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Instantiate stuff.
|
2014-02-01 11:20:06 +00:00
|
|
|
$(foreach lib, $(libraries), $(eval $(call build-library,$(lib))))
|
|
|
|
$(foreach prog, $(programs), $(eval $(call build-program,$(prog))))
|
|
|
|
$(foreach script, $(bin-scripts), $(eval $(call install-program-in,$(script),$(bindir))))
|
|
|
|
$(foreach script, $(bin-scripts), $(eval programs-list += $(script)))
|
|
|
|
$(foreach script, $(noinst-scripts), $(eval programs-list += $(script)))
|
|
|
|
$(foreach template, $(template-files), $(eval $(call instantiate-template,$(template))))
|
|
|
|
$(foreach test, $(install-tests), $(eval $(call run-install-test,$(test))))
|
2014-01-31 14:33:12 +00:00
|
|
|
$(foreach file, $(man-pages), $(eval $(call install-data-in, $(file), $(mandir)/man$(patsubst .%,%,$(suffix $(file))))))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
2014-02-01 10:47:34 +00:00
|
|
|
.PHONY: default all man help
|
2014-01-31 14:33:12 +00:00
|
|
|
|
2021-02-26 21:42:51 +00:00
|
|
|
all: $(programs-list) $(libs-list) $(man-pages)
|
2014-01-31 14:33:12 +00:00
|
|
|
|
|
|
|
man: $(man-pages)
|
2013-12-12 10:27:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "The following targets are available:"
|
|
|
|
@echo ""
|
|
|
|
@echo " default: Build default targets"
|
2014-01-31 14:33:12 +00:00
|
|
|
ifdef man-pages
|
|
|
|
@echo " man: Generate manual pages"
|
|
|
|
endif
|
2014-02-01 10:47:34 +00:00
|
|
|
@$(print-top-help)
|
2014-02-01 11:20:06 +00:00
|
|
|
ifdef programs-list
|
2013-12-12 10:27:47 +00:00
|
|
|
@echo ""
|
|
|
|
@echo "The following programs can be built:"
|
|
|
|
@echo ""
|
2014-02-01 11:20:06 +00:00
|
|
|
@for i in $(programs-list); do echo " $$i"; done
|
2013-12-12 10:27:47 +00:00
|
|
|
endif
|
2014-02-01 11:20:06 +00:00
|
|
|
ifdef libs-list
|
2013-12-12 10:27:47 +00:00
|
|
|
@echo ""
|
|
|
|
@echo "The following libraries can be built:"
|
|
|
|
@echo ""
|
2014-02-01 11:20:06 +00:00
|
|
|
@for i in $(libs-list); do echo " $$i"; done
|
2013-12-18 15:40:48 +00:00
|
|
|
endif
|
2014-02-01 10:47:34 +00:00
|
|
|
@echo ""
|
|
|
|
@echo "The following variables control the build:"
|
|
|
|
@echo ""
|
|
|
|
@echo " BUILD_SHARED_LIBS ($(BUILD_SHARED_LIBS)): Whether to build shared libraries"
|
|
|
|
@echo " BUILD_DEBUG ($(BUILD_DEBUG)): Whether to include debug symbols"
|
|
|
|
@echo " CC ($(CC)): C compiler to be used"
|
|
|
|
@echo " CFLAGS: Flags for the C compiler"
|
|
|
|
@echo " CXX ($(CXX)): C++ compiler to be used"
|
|
|
|
@echo " CXXFLAGS: Flags for the C++ compiler"
|
2021-02-26 21:48:41 +00:00
|
|
|
@echo " CPPFLAGS: C preprocessor flags, used for both CC and CXX"
|
2014-02-01 10:47:34 +00:00
|
|
|
@$(print-var-help)
|