nix-gh/mk/lib.mk

161 lines
3.6 KiB
Makefile
Raw Permalink Normal View History

default: all
# Get rid of default suffixes. FIXME: is this a good idea?
.SUFFIXES:
# Initialise some variables.
2014-02-01 12:20:06 +01:00
bin-scripts :=
noinst-scripts :=
2014-01-31 15:33:12 +01:00
man-pages :=
2014-02-01 12:20:06 +01:00
install-tests :=
2014-02-01 14:22:08 +01:00
dist-files :=
OS = $(shell uname -s)
2014-09-11 15:28:30 +02:00
# Hack to define a literal space.
space :=
space +=
2014-09-11 15:47:31 +02:00
# Hack to define a literal newline.
define newline
endef
2013-12-17 12:13:48 +01:00
# Default installation paths.
prefix ?= /usr/local
libdir ?= $(prefix)/lib
bindir ?= $(prefix)/bin
libexecdir ?= $(prefix)/libexec
datadir ?= $(prefix)/share
2014-09-11 16:24:26 +02:00
jardir ?= $(datadir)/java
2013-12-17 12:13:48 +01:00
localstatedir ?= $(prefix)/var
sysconfdir ?= $(prefix)/etc
2014-01-31 15:33:12 +01:00
mandir ?= $(prefix)/share/man
2013-12-17 12:13:48 +01:00
# Initialise support for build directories.
builddir ?=
ifdef builddir
buildprefix = $(builddir)/
else
buildprefix =
endif
# Pass -fPIC if we're building dynamic libraries.
2013-12-17 12:13:48 +01:00
BUILD_SHARED_LIBS ?= 1
ifeq ($(BUILD_SHARED_LIBS), 1)
2014-12-09 12:20:27 +01:00
ifeq (CYGWIN,$(findstring CYGWIN,$(OS)))
GLOBAL_CFLAGS += -U__STRICT_ANSI__ -D_GNU_SOURCE
GLOBAL_CXXFLAGS += -U__STRICT_ANSI__ -D_GNU_SOURCE
2014-12-09 12:20:27 +01:00
else
GLOBAL_CFLAGS += -fPIC
GLOBAL_CXXFLAGS += -fPIC
endif
ifneq ($(OS), Darwin)
ifneq ($(OS), SunOS)
ifneq ($(OS), FreeBSD)
GLOBAL_LDFLAGS += -Wl,--no-copy-dt-needed-entries
endif
endif
endif
SET_RPATH_TO_LIBS ?= 1
endif
# Pass -g if we want debug info.
2013-12-17 12:13:48 +01:00
BUILD_DEBUG ?= 1
ifeq ($(BUILD_DEBUG), 1)
GLOBAL_CFLAGS += -g
GLOBAL_CXXFLAGS += -g
GLOBAL_JAVACFLAGS += -g
endif
include mk/functions.mk
include mk/tracing.mk
include mk/clean.mk
include mk/install.mk
include mk/libraries.mk
include mk/programs.mk
include mk/jars.mk
include mk/patterns.mk
include mk/templates.mk
include mk/tests.mk
# Include all sub-Makefiles.
define include-sub-makefile
2013-12-12 11:24:03 +01:00
d := $$(patsubst %/,%,$$(dir $(1)))
include $(1)
endef
2014-02-01 12:20:06 +01:00
$(foreach mf, $(makefiles), $(eval $(call include-sub-makefile, $(mf))))
# Instantiate stuff.
2014-02-01 12:20:06 +01:00
$(foreach lib, $(libraries), $(eval $(call build-library,$(lib))))
$(foreach prog, $(programs), $(eval $(call build-program,$(prog))))
$(foreach jar, $(jars), $(eval $(call build-jar,$(jar))))
$(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 15:33:12 +01:00
$(foreach file, $(man-pages), $(eval $(call install-data-in, $(file), $(mandir)/man$(patsubst .%,%,$(suffix $(file))))))
2014-02-01 14:22:08 +01:00
include mk/dist.mk
2014-02-01 11:47:34 +01:00
.PHONY: default all man help
2014-01-31 15:33:12 +01:00
2014-02-01 12:20:06 +01:00
all: $(programs-list) $(libs-list) $(jars-list) $(man-pages)
2014-01-31 15:33:12 +01:00
man: $(man-pages)
2013-12-12 11:27:47 +01:00
help:
@echo "The following targets are available:"
@echo ""
@echo " default: Build default targets"
2014-01-31 15:33:12 +01:00
ifdef man-pages
@echo " man: Generate manual pages"
endif
2014-02-01 11:47:34 +01:00
@$(print-top-help)
2014-02-01 12:20:06 +01:00
ifdef programs-list
2013-12-12 11:27:47 +01:00
@echo ""
@echo "The following programs can be built:"
@echo ""
2014-02-01 12:20:06 +01:00
@for i in $(programs-list); do echo " $$i"; done
2013-12-12 11:27:47 +01:00
endif
2014-02-01 12:20:06 +01:00
ifdef libs-list
2013-12-12 11:27:47 +01:00
@echo ""
@echo "The following libraries can be built:"
@echo ""
2014-02-01 12:20:06 +01:00
@for i in $(libs-list); do echo " $$i"; done
2013-12-12 11:27:47 +01:00
endif
2014-02-01 12:20:06 +01:00
ifdef jars-list
@echo ""
@echo "The following JARs can be built:"
@echo ""
2014-02-01 12:20:06 +01:00
@for i in $(jars-list); do echo " $$i"; done
endif
2014-02-01 11:47:34 +01: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"
@$(print-var-help)