diff options
author | midipix <writeonce@midipix.org> | 2016-04-23 16:00:09 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-10 23:35:41 -0500 |
commit | 58ae295ab05108130acaf5ae05e3ecaa13f29741 (patch) | |
tree | 7501c0bb09b6cbfb09d4739a212bcfad4ba828fb | |
parent | ed1185d3ba4d55054acdce66ea05663ff188a36b (diff) | |
download | perk-58ae295ab05108130acaf5ae05e3ecaa13f29741.tar.bz2 perk-58ae295ab05108130acaf5ae05e3ecaa13f29741.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) |