# # This Makefile requires GNU make. # # Do not make changes here. # Use the included .mak files. # it: all make_need := 3.81 ifeq "" "$(strip $(filter $(make_need), $(firstword $(sort $(make_need) $(MAKE_VERSION)))))" fail := $(error Your make ($(MAKE_VERSION)) is too old. You need $(make_need) or newer) endif uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))) CC = $(error Please use ./configure first) STATIC_LIBS := SHARED_LIBS := INTERNAL_LIBS := EXTRA_TARGETS := PC_TARGETS := LIB_DEFS := BIN_SYMLINKS := TEST_BINS := define library_definition LIB$(1) := lib$(2).$(if $(DO_ALLSTATIC),a,so).xyzzy ifdef DO_SHARED SHARED_LIBS += lib$(2).so.xyzzy endif ifdef DO_STATIC STATIC_LIBS += lib$(2).a.xyzzy endif ifdef DO_PKGCONFIG PC_TARGETS += lib$(2).pc endif lib$(2).pc: exec env \ library="$(2)" \ includedir="$(includedir)" \ dynlibdir="$(dynlibdir)" \ libdir="$(libdir)" \ extra_includedirs="$(extra_includedirs)" \ extra_libdirs="$(extra_libdirs)" \ extra_libs="$$(strip $$(EXTRA_LIBS))" \ description="$$($(1)_DESCRIPTION)" \ url="$$($(1)_URL)" \ ldlibs="$(LDLIBS)" \ ./tools/gen-dotpc.sh > $$@.tmp exec mv -f $$@.tmp $$@ endef define binary_installation_rule $(DESTDIR)$(1)/$(2): ./$(2) package/modes exec $(INSTALL) -D -m 600 $$< $$@ grep -- ^$$(@F) < package/modes | { read name mode owner && \ if [ x$$$$owner != x ] ; then chown -- $$$$owner $$@ ; fi && \ chmod $$$$mode $$@ ; } endef define symlink_installation_rule $(DESTDIR)$(1)/$(2): $(DESTDIR)$(1)/$(SYMLINK_TARGET_$(2)) exec $(INSTALL) -l $$(