diff options
author | midipix <writeonce@midipix.org> | 2016-04-23 16:00:09 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-23 16:11:16 -0400 |
commit | 028ddb42d67a96dbebb4eeb4adf3d3cac7f757ff (patch) | |
tree | 74c144b05419b0dc9cade70675870f87dc5c3429 | |
parent | 50b6ef79fd58c456de08662dac698b6e0408a4e6 (diff) | |
download | slibtool-028ddb42d67a96dbebb4eeb4adf3d3cac7f757ff.tar.bz2 slibtool-028ddb42d67a96dbebb4eeb4adf3d3cac7f757ff.tar.xz |
build system: add support of project-specific install steps.
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 7671b87..2b888d2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -60,7 +60,9 @@ install: shared: static: - +install-extras: +install-app-extras: +install-libs-extras: include $(PROJECT_DIR)/sysinfo/host/$(HOST).mk include $(PROJECT_DIR)/sysinfo/compiler/$(COMPILER).mk @@ -97,12 +99,12 @@ lib/%$(OS_ARCHIVE_EXT): all: shared static app -install: install-libs install-headers install-app +install: install-libs install-headers install-app install-extras app: default-app -install-libs: install-shared install-static install-implib +install-libs: install-shared install-static install-implib install-libs-extras install-headers:shared static mkdir -p $(DESTDIR)$(INCLUDEDIR)/$(PACKAGE) @@ -116,7 +118,7 @@ install-static: static mkdir -p $(DESTDIR)$(LIBDIR) cp $(STATIC_LIB) $(DESTDIR)$(LIBDIR) -install-app: app +install-app: app install-app-extras mkdir -p $(DESTDIR)$(BINDIR) cp $(APP) $(DESTDIR)$(BINDIR) |