From 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:49:25 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- lib/Makefile.bsd-lib | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 lib/Makefile.bsd-lib (limited to 'lib/Makefile.bsd-lib') diff --git a/lib/Makefile.bsd-lib b/lib/Makefile.bsd-lib new file mode 100644 index 0000000..2792ba3 --- /dev/null +++ b/lib/Makefile.bsd-lib @@ -0,0 +1,47 @@ +# +# This is a Makefile stub which handles the creation of BSD shared +# libraries. +# +# In order to use this stub, the following makefile variables must be defined. +# +# BSDLIB_VERSION = 1.0 +# BSDLIB_IMAGE = libce +# BSDLIB_MYDIR = et +# BSDLIB_INSTALL_DIR = $(SHLIBDIR) +# + +all:: image + +real-subdirs:: Makefile + @echo " MKDIR pic" + @mkdir -p pic + +BSD_LIB = $(BSDLIB_IMAGE).so.$(BSDLIB_VERSION) +BSDLIB_PIC_FLAG = -fpic + +image: $(BSD_LIB) + +$(BSD_LIB): $(OBJS) + (cd pic; ld -Bshareable -o $(BSD_LIB) $(LDFLAGS_SHLIB) $(OBJS)) + $(MV) pic/$(BSD_LIB) . + $(RM) -f ../$(BSD_LIB) + (cd ..; $(LN) $(LINK_BUILD_FLAGS) \ + `echo $(my_dir) | sed -e 's;lib/;;'`/$(BSD_LIB) $(BSD_LIB)) + +install-shlibs install:: $(BSD_LIB) + @echo " INSTALL_PROGRAM $(BSDLIB_INSTALL_DIR)/$(BSD_LIB)" + @$(INSTALL_PROGRAM) $(BSD_LIB) \ + $(DESTDIR)$(BSDLIB_INSTALL_DIR)/$(BSD_LIB) + @-$(LDCONFIG) + +install-strip: install + +install-shlibs-strip:: install-shlibs + +uninstall-shlibs uninstall:: + $(RM) -f $(DESTDIR)$(BSDLIB_INSTALL_DIR)/$(BSD_LIB) + +clean:: + $(RM) -rf pic + $(RM) -f $(BSD_LIB) + $(RM) -f ../$(BSD_LIB) -- cgit v1.2.3