about summary refs log tree commit diff
path: root/mk/lib.mk
blob: 0b469a13a494940ef2a52e03801822c8779e5753 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
default: all


# Include Autoconf variables.
template_files += Makefile.config
include Makefile.config


# Get rid of default suffixes. FIXME: is this a good idea?
.SUFFIXES:


# Initialise some variables.
QUIET = @
bin_SCRIPTS :=
noinst_SCRIPTS :=


# Pass -fPIC if we're building dynamic libraries.
BUILD_SHARED_LIBS = 1

ifeq ($(BUILD_SHARED_LIBS), 1)
  GLOBAL_CFLAGS += -fPIC
  GLOBAL_CXXFLAGS += -fPIC
  GLOBAL_LDFLAGS += -Wl,--no-copy-dt-needed-entries
endif


# Pass -g if we want debug info.
BUILD_DEBUG = 1

ifeq ($(BUILD_DEBUG), 1)
  GLOBAL_CFLAGS += -g
  GLOBAL_CXXFLAGS += -g
endif


include mk/clean.mk
include mk/dist.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.
define include-sub-makefile =
  d := $$(patsubst %/,%,$$(dir $(1)))
  include $(1)
endef

$(foreach mf, $(SUBS), $(eval $(call include-sub-makefile, $(mf))))


# Instantiate stuff.
$(foreach lib, $(LIBS), $(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))))


all: $(programs_list) $(libs_list)


help:
	@echo "The following targets are available:"
	@echo ""
	@echo "  default: Build default targets"
	@echo "  install: Install into \$$(prefix) (currently set to '$(prefix)')"
	@echo "  clean: Delete generated files"
	@echo "  dryclean: Show what files would be deleted by 'make clean'"
ifdef PACKAGE_NAME
	@echo "  dist: Generate a source distribution"
endif
ifdef programs_list
	@echo ""
	@echo "The following programs can be built:"
	@echo ""
	@for i in $(programs_list); do echo "  $$i"; done
endif
ifdef libs_list
	@echo ""
	@echo "The following libraries can be built:"
	@echo ""
	@for i in $(libs_list); do echo "  $$i"; done
endif