From e22ebdaaebd0290e3b1b18648e6b1048ff100845 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 19 Feb 2022 20:35:48 +0100 Subject: Improve makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da70bbc..95f6335 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,19 @@ -.NONPOSIX: +.POSIX: CONFIGFILE = config.mk +include $(CONFIGFILE) + +OS = linux +# Linux: linux +# Mac OS: macos +# Windows: windows +include mk/$(OS).mk -OSCONFIGFILE = linux.mk -# Change to macos.mk for Mac OS LIB_MAJOR = 1 LIB_MINOR = 0 LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR) -include $(CONFIGFILE) -include $(OSCONFIGFILE) HDR =\ libsha2.h\ @@ -34,7 +37,7 @@ OBJ =\ sum_fd.o\ unhex.o\ unmarshal.o\ - update.o\ + update.o MAN0 =\ libsha2.h.0 @@ -92,6 +95,7 @@ install: mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man3" cp -- libsha2.a "$(DESTDIR)$(PREFIX)/lib" cp -- libsha2.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBMINOREXT)" + $(FIX_INSTALL_NAME) -- "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBMINOREXT)" ln -sf -- "libsha2.$(LIBMINOREXT).$(LIB_MINOR)" "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBMAJOREXT)" ln -sf -- "libsha2.$(LIBMAJOREXT)" "$(DESTDIR)$(PREFIX)/lib/libsha2.$(LIBEXT)" cp -- libsha2.h "$(DESTDIR)$(PREFIX)/include" -- cgit v1.2.3-70-g09d2