summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-10 16:27:36 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:48 -0500
commit218dfccb27ef4b2de7115548006caf147df53d82 (patch)
tree7fa44b39e2c5e7496ae8c31dd1c7a2646f1c1cbd /Makefile.in
parent7198937e41f893893aae422bf8b9f996e93c21d0 (diff)
downloadperk-218dfccb27ef4b2de7115548006caf147df53d82.tar.bz2
perk-218dfccb27ef4b2de7115548006caf147df53d82.tar.xz
build system: Makefile.in, version.mk: added --avoid-version support.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index e869656..418a787 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,6 +3,7 @@ NICKNAME = @nickname@
PROJECT_DIR = @project_dir@
GIT_REFERENCE_DIR = @git_reference_dir@
CUSTOM_INSTALL_HEADERS = @custom_install_headers@
+AVOID_VERSION = @avoid_version@
BUILD = @build@
HOST = @host@
@@ -128,7 +129,8 @@ install-headers-default:
mkdir -p $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
cp $(API_HEADERS) $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
-install-shared: shared install-lib install-soname install-solink install-implib
+install-shared: shared install-lib install-implib
+install-shared: package-install-soname package-install-solink
install-shared: install-headers
install-lib: shared
@@ -149,7 +151,8 @@ install-static-app: static-app install-app-extras
-shared: shared-lib shared-soname shared-solink implib
+shared: shared-lib implib
+shared: package-shared-soname package-shared-solink
static: static-lib
@@ -365,9 +368,13 @@ clean: clean-implib
.PHONY: all install shared static app \
package-app \
shared-objs shared-lib \
+ shared-soname shared-solink \
+ package-shared-soname package-shared-solink \
static-objs static-lib \
default-app shared-app static-app \
install-shared install-static \
+ install-soname install-solink \
+ package-install-soname package-install-solink \
install-headers install-app \
install-headers-default install-headers-custom \
clean distclean clean-implib version \