diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
commit | 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a (patch) | |
tree | 6a403684e0978f0287d7f0ec0e5aab1fd31a59e1 /lib/Makefile.darwin-lib | |
parent | Initial commit. (diff) | |
download | e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.tar.xz e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.zip |
Adding upstream version 1.47.0.upstream/1.47.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/Makefile.darwin-lib')
-rw-r--r-- | lib/Makefile.darwin-lib | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/lib/Makefile.darwin-lib b/lib/Makefile.darwin-lib new file mode 100644 index 0000000..95e8ee0 --- /dev/null +++ b/lib/Makefile.darwin-lib @@ -0,0 +1,52 @@ +# +# This is a Makefile stub which handles the creation of Darwin 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 + $(E) " MKDIR pic" + $(Q) mkdir -p pic + +BSD_LIB = $(BSDLIB_IMAGE).$(BSDLIB_VERSION).dylib +BSDLIB_PIC_FLAG = -fPIC + +image: $(BSD_LIB) + +$(BSD_LIB): $(OBJS) + $(E) " GEN_BSD_SOLIB $(BSD_LIB)" + $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \ + -install_name $(BSDLIB_INSTALL_DIR)/$(BSD_LIB) \ + -undefined dynamic_lookup -o $(BSD_LIB) $(OBJS)) + $(Q) $(MV) pic/$(BSD_LIB) . + $(Q) $(RM) -f ../$(BSD_LIB) + $(Q) (cd ..; $(LN) $(LINK_BUILD_FLAGS) \ + `echo $(my_dir) | sed -e 's;lib/;;'`/$(BSD_LIB) $(BSD_LIB)) + $(Q) (cd ..; $(LN) $(LINK_BUILD_FLAGS) $(BSD_LIB) $(BSDLIB_IMAGE).dylib) + +install-shlibs install:: $(BSD_LIB) + $(E) " INSTALL_PROGRAM $(BSDLIB_INSTALL_DIR)/$(BSD_LIB)" + $(Q) $(INSTALL_PROGRAM) $(BSD_LIB) \ + $(DESTDIR)$(BSDLIB_INSTALL_DIR)/$(BSD_LIB) + -$(Q) $(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) + $(RM) -f ../$(BSDLIB_IMAGE).dylib |