aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-19 23:10:24 +0100
committerMattias Andrée <maandree@kth.se>2022-02-19 23:10:24 +0100
commit9ffba2d1b2f5efa605834b095a323293baf3fe4d (patch)
tree5008db91c4c45b33dd30e66249fcecaf5aab05e0 /Makefile
parentUnimportant fix to makefile (diff)
downloadlibcontacts-9ffba2d1b2f5efa605834b095a323293baf3fe4d.tar.gz
libcontacts-9ffba2d1b2f5efa605834b095a323293baf3fe4d.tar.bz2
libcontacts-9ffba2d1b2f5efa605834b095a323293baf3fe4d.tar.xz
Improve makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index ff565a7..7d039fe 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,5 @@
.POSIX:
-LIB_MAJOR = 1
-LIB_MINOR = 0
-LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
-
-
CONFIGFILE = config.mk
include $(CONFIGFILE)
@@ -15,6 +10,10 @@ OS = linux
include mk/$(OS).mk
+LIB_MAJOR = 1
+LIB_MINOR = 0
+LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
+
OBJ =\
libcontacts_address_destroy.o\
@@ -84,6 +83,7 @@ install: libcontacts.a libcontacts.$(LIBEXT)
cp -- libcontacts.a "$(DESTDIR)$(PREFIX)/lib/"
cp -- libcontacts.h "$(DESTDIR)$(PREFIX)/include/"
cp -- libcontacts.$(LIBEXT) "$(DESTDIR)$(PREFIX)/lib/libcontacts.$(LIBMINOREXT)"
+ $(FIX_INSTALL_NAME) "$(DESTDIR)$(PREFIX)/lib/libcontacts.$(LIBMINOREXT)"
ln -sf -- libcontacts.$(LIBMINOREXT) "$(DESTDIR)$(PREFIX)/lib/libcontacts.$(LIBMAJOREXT)"
ln -sf -- libcontacts.$(LIBMAJOREXT) "$(DESTDIR)$(PREFIX)/lib/libcontacts.$(LIBEXT)"
cp -- $(MAN0) "$(DESTDIR)$(MANPREFIX)/man0/"