summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-05 21:09:30 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:45 -0500
commit0eaaffb757331e8f21a19b3f6204b8743b70f953 (patch)
tree820d2bda2c28e6d0b0306ea32916f2e03151ad29 /Makefile.in
parent591339c4a2b95070209e49918935b4eabd53c6f8 (diff)
downloadperk-0eaaffb757331e8f21a19b3f6204b8743b70f953.tar.bz2
perk-0eaaffb757331e8f21a19b3f6204b8743b70f953.tar.xz
build system: always install headers with install-static and install-shared.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index d96bf5e..2314ebb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -121,19 +121,19 @@ app.tag: package-app
install-libs: package-install-shared
install-libs: package-install-static
-install-libs: package-install-headers
install-headers:package-shared package-static
mkdir -p $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
cp $(API_HEADERS) $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE)
install-shared: shared install-lib install-soname install-solink install-implib
+install-shared: install-headers
install-lib: shared
mkdir -p $(DESTDIR)$(LIBDIR)
cp $(SHARED_LIB) $(DESTDIR)$(LIBDIR)
-install-static: static
+install-static: static install-headers
mkdir -p $(DESTDIR)$(LIBDIR)
cp $(STATIC_LIB) $(DESTDIR)$(LIBDIR)