about summary refs log tree commit diff
path: root/mk/lib.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·15+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-01-09T15·15+0100
commit568b1b0a8a65cb255d6a7a33dfe2c15df3212103 (patch)
treefedfcccea3f25a6079c1f8772b2f33c171eb1a9f /mk/lib.mk
parentbf8b66adcfdc04f2f0f0a482c66dd419a355cad6 (diff)
Remove mk subdirectory in preparation for "git subtree"
Diffstat (limited to 'mk/lib.mk')
-rw-r--r--mk/lib.mk67
1 files changed, 0 insertions, 67 deletions
diff --git a/mk/lib.mk b/mk/lib.mk
deleted file mode 100644
index 60b6815e9e..0000000000
--- a/mk/lib.mk
+++ /dev/null
@@ -1,67 +0,0 @@
-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)