aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 23:13:14 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 23:13:14 +0100
commit57d1c6d3d5bf5f14b8b1755e78b5e0545cb11af7 (patch)
tree9ecd9eb9e925fd5634f225c44fc21e86abed4892 /Makefile
parentBump year in license (diff)
downloadliberror-57d1c6d3d5bf5f14b8b1755e78b5e0545cb11af7.tar.gz
liberror-57d1c6d3d5bf5f14b8b1755e78b5e0545cb11af7.tar.bz2
liberror-57d1c6d3d5bf5f14b8b1755e78b5e0545cb11af7.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4eab1f9..c15dda3 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,9 @@ include $(CONFIGFILE)
OS = linux
# linux = Linux
# macos = Mac OS
-include $(OS).mk
+# windows = Windows
+include mk/$(OS).mk
+
LIB_MAJOR = 1
LIB_MINOR = 1
@@ -84,6 +86,7 @@ install: liberror.a liberror.$(LIBEXT)
mkdir -p -- "$(DESTDIR)$(MANPREFIX)/man7"
cp -- liberror.a "$(DESTDIR)$(PREFIX)/lib"
cp -- liberror.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/liberror.$(LIBMINOREXT)"
+ $(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/liberror.$(LIBMINOREXT)"
ln -sf -- liberror.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/liberror.$(LIBMAJOREXT)"
ln -sf -- liberror.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/liberror.$(LIBEXT)"
cp -- liberror.h "$(DESTDIR)$(PREFIX)/include"