diff options
author | midipix <writeonce@midipix.org> | 2016-05-04 19:12:09 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:41 -0500 |
commit | f89e82dfe9395298f6b4dadf45d4e57f35819dd4 (patch) | |
tree | 031bf3effe7863b667057c4c4945c0e51d9f4716 | |
parent | 3ccc3bc8757e98f84f383483e9943cf9f0e7fe1b (diff) | |
download | mdso-f89e82dfe9395298f6b4dadf45d4e57f35819dd4.tar.bz2 mdso-f89e82dfe9395298f6b4dadf45d4e57f35819dd4.tar.xz |
build system: added the 'install-static-app' make target.
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 509af4e..5739b0f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,6 +127,10 @@ install-app: app install-app-extras mkdir -p $(DESTDIR)$(BINDIR) cp $(APP) $(DESTDIR)$(BINDIR) +install-static-app: static-app install-app-extras + mkdir -p $(DESTDIR)$(BINDIR) + cp $(STATIC_APP) $(DESTDIR)$(BINDIR)/$(NICKNAME)$(OS_APP_SUFFIX) + shared: shared-lib shared-soname shared-solink implib |