2014-02-01 11:20:06 +00:00
|
|
|
|
programs-list :=
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
# Build a program with symbolic name $(1). The program is defined by
|
2016-11-25 23:37:43 +00:00
|
|
|
|
# various variables prefixed by ‘$(1)_’:
|
2013-12-10 14:54:34 +00:00
|
|
|
|
#
|
2013-12-16 15:49:41 +00:00
|
|
|
|
# - $(1)_DIR: the directory where the (non-installed) program will be
|
|
|
|
|
# placed.
|
2013-12-10 14:54:34 +00:00
|
|
|
|
#
|
|
|
|
|
# - $(1)_SOURCES: the source files of the program.
|
|
|
|
|
#
|
2014-02-11 13:15:57 +00:00
|
|
|
|
# - $(1)_CFLAGS: additional C compiler flags.
|
|
|
|
|
#
|
|
|
|
|
# - $(1)_CXXFLAGS: additional C++ compiler flags.
|
|
|
|
|
#
|
2014-08-07 14:10:23 +00:00
|
|
|
|
# - $(1)_ORDER_AFTER: a set of targets on which the object files of
|
|
|
|
|
# this program will have an order-only dependency.
|
|
|
|
|
#
|
2013-12-10 14:54:34 +00:00
|
|
|
|
# - $(1)_LIBS: the symbolic names of libraries on which this program
|
|
|
|
|
# depends.
|
|
|
|
|
#
|
|
|
|
|
# - $(1)_LDFLAGS: additional linker flags.
|
|
|
|
|
#
|
|
|
|
|
# - $(1)_INSTALL_DIR: the directory where the program will be
|
|
|
|
|
# installed; defaults to $(bindir).
|
2014-02-04 10:02:49 +00:00
|
|
|
|
define build-program
|
2014-09-05 12:17:05 +00:00
|
|
|
|
_d := $(buildprefix)$$($(1)_DIR)
|
2014-01-09 15:54:01 +00:00
|
|
|
|
_srcs := $$(sort $$(foreach src, $$($(1)_SOURCES), $$(src)))
|
2014-09-05 12:17:05 +00:00
|
|
|
|
$(1)_OBJS := $$(addprefix $(buildprefix), $$(addsuffix .o, $$(basename $$(_srcs))))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
_libs := $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_PATH))
|
|
|
|
|
$(1)_PATH := $$(_d)/$(1)
|
|
|
|
|
|
2014-02-07 14:06:21 +00:00
|
|
|
|
$$(eval $$(call create-dir, $$(_d)))
|
2014-02-06 09:59:58 +00:00
|
|
|
|
|
2014-02-18 12:35:35 +00:00
|
|
|
|
$$($(1)_PATH): $$($(1)_OBJS) $$(_libs) | $$(_d)/
|
2021-10-07 15:54:58 +00:00
|
|
|
|
$$(trace-ld) $(CXX) -o $$@ $$(LDFLAGS) $$(GLOBAL_LDFLAGS) $$($(1)_OBJS) $$($(1)_LDFLAGS) $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_LDFLAGS_USE))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
$(1)_INSTALL_DIR ?= $$(bindir)
|
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
ifdef $(1)_INSTALL_DIR
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
$(1)_INSTALL_PATH := $$($(1)_INSTALL_DIR)/$(1)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
$$(eval $$(call create-dir, $$($(1)_INSTALL_DIR)))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
install: $(DESTDIR)$$($(1)_INSTALL_PATH)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
ifeq ($(BUILD_SHARED_LIBS), 1)
|
|
|
|
|
|
|
|
|
|
_libs_final := $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_INSTALL_PATH))
|
|
|
|
|
|
|
|
|
|
$(DESTDIR)$$($(1)_INSTALL_PATH): $$($(1)_OBJS) $$(_libs_final) | $(DESTDIR)$$($(1)_INSTALL_DIR)/
|
2021-10-07 15:54:58 +00:00
|
|
|
|
$$(trace-ld) $(CXX) -o $$@ $$(LDFLAGS) $$(GLOBAL_LDFLAGS) $$($(1)_OBJS) $$($(1)_LDFLAGS) $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_LDFLAGS_USE_INSTALLED))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
else
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
$(DESTDIR)$$($(1)_INSTALL_PATH): $$($(1)_PATH) | $(DESTDIR)$$($(1)_INSTALL_DIR)/
|
2018-04-09 01:22:10 +00:00
|
|
|
|
install -t $(DESTDIR)$$($(1)_INSTALL_DIR) $$<
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2020-05-08 10:03:27 +00:00
|
|
|
|
endif
|
2013-12-10 14:54:34 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2014-02-11 13:15:57 +00:00
|
|
|
|
# Propagate CFLAGS and CXXFLAGS to the individual object files.
|
|
|
|
|
$$(foreach obj, $$($(1)_OBJS), $$(eval $$(obj)_CFLAGS=$$($(1)_CFLAGS)))
|
2013-12-10 14:54:34 +00:00
|
|
|
|
$$(foreach obj, $$($(1)_OBJS), $$(eval $$(obj)_CXXFLAGS=$$($(1)_CXXFLAGS)))
|
|
|
|
|
|
2013-12-16 15:49:41 +00:00
|
|
|
|
# Make each object file depend on the common dependencies.
|
2014-02-28 11:01:42 +00:00
|
|
|
|
$$(foreach obj, $$($(1)_OBJS), $$(eval $$(obj): $$($(1)_COMMON_DEPS) $$(GLOBAL_COMMON_DEPS)))
|
2013-12-16 15:49:41 +00:00
|
|
|
|
|
2014-08-07 14:10:23 +00:00
|
|
|
|
# Make each object file have order-only dependencies on the common
|
|
|
|
|
# order-only dependencies. This includes the order-only dependencies
|
|
|
|
|
# of libraries we're depending on.
|
|
|
|
|
$(1)_ORDER_AFTER_CLOSED = $$($(1)_ORDER_AFTER) $$(foreach lib, $$($(1)_LIBS), $$($$(lib)_ORDER_AFTER_CLOSED))
|
|
|
|
|
|
|
|
|
|
$$(foreach obj, $$($(1)_OBJS), $$(eval $$(obj): | $$($(1)_ORDER_AFTER_CLOSED) $$(GLOBAL_ORDER_AFTER)))
|
|
|
|
|
|
2013-12-16 15:49:41 +00:00
|
|
|
|
# Include .dep files, if they exist.
|
2014-02-01 10:31:25 +00:00
|
|
|
|
$(1)_DEPS := $$(foreach fn, $$($(1)_OBJS), $$(call filename-to-dep, $$(fn)))
|
2013-12-16 15:49:41 +00:00
|
|
|
|
-include $$($(1)_DEPS)
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
2014-02-01 11:20:06 +00:00
|
|
|
|
programs-list += $$($(1)_PATH)
|
|
|
|
|
clean-files += $$($(1)_PATH) $$(_d)/*.o $$(_d)/.*.dep $$($(1)_DEPS) $$($(1)_OBJS)
|
2020-05-08 09:49:40 +00:00
|
|
|
|
|
|
|
|
|
# Phony target to run this program (typically as a dependency of 'check').
|
|
|
|
|
.PHONY: $(1)_RUN
|
|
|
|
|
$(1)_RUN: $$($(1)_PATH)
|
|
|
|
|
$(trace-test) $$($(1)_PATH)
|
|
|
|
|
|
2013-12-10 14:54:34 +00:00
|
|
|
|
endef
|