summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-07 12:01:24 -0400
committermidipix <writeonce@midipix.org>2016-05-07 13:21:23 -0400
commitdb15addc48c5da105a3be238ce10886fc23c7545 (patch)
treee800b380f57c9e3a606fbf2af77db52747a16874
parentcb65d5a4652eb7376bc107cdf938c25acea4b99d (diff)
downloadslibtool-db15addc48c5da105a3be238ce10886fc23c7545.tar.bz2
slibtool-db15addc48c5da105a3be238ce10886fc23c7545.tar.xz
build system: project: added custom header installation support.
-rw-r--r--Makefile.in3
-rw-r--r--config.project1
-rwxr-xr-xconfigure1
-rw-r--r--project/custom.mk12
4 files changed, 16 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ab066e4..c6e5d5c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,6 +2,7 @@ PACKAGE = @package@
NICKNAME = @nickname@
PROJECT_DIR = @project_dir@
GIT_REFERENCE_DIR = @git_reference_dir@
+CUSTOM_INSTALL_HEADERS = @custom_install_headers@
BUILD = @build@
HOST = @host@
@@ -124,7 +125,7 @@ app.tag:
install-libs: package-install-shared
install-libs: package-install-static
-install-headers:package-shared package-static
+install-headers-default:
mkdir -p $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
cp $(API_HEADERS) $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
diff --git a/config.project b/config.project
index 3a005b3..e0c7d4c 100644
--- a/config.project
+++ b/config.project
@@ -1,6 +1,7 @@
# project
mb_package=slibtool
mb_require_out_of_tree=no
+mb_custom_install_headers=no
# build
diff --git a/configure b/configure
index 8a17f2e..e4f31a8 100755
--- a/configure
+++ b/configure
@@ -354,6 +354,7 @@ config_copy()
-e 's^@nickname@^'"$mb_nickname"'^g' \
-e 's^@project_dir@^'"$mb_project_dir"'^g' \
-e 's^@git_reference_dir@^'"$mb_git_reference_dir"'^g' \
+ -e 's^@custom_install_headers@^'"$mb_custom_install_headers"'^g' \
\
-e 's^@build@^'"$mb_build"'^g' \
-e 's^@host@^'"$mb_host"'^g' \
diff --git a/project/custom.mk b/project/custom.mk
index 3845121..8f9fabb 100644
--- a/project/custom.mk
+++ b/project/custom.mk
@@ -50,3 +50,15 @@ app-tag: PACKAGE_APP = $(DEFAULT_APP)
app.tag: $(DEFAULT_APP)
endif
+
+
+
+ifeq ($(CUSTOM_INSTALL_HEADERS),yes)
+
+install-headers:install-headers-custom
+
+else
+
+install-headers:install-headers-default
+
+endif