diff options
author | midipix <writeonce@midipix.org> | 2016-05-04 19:12:09 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-06 11:03:40 -0400 |
commit | d0ae4c78e0cc0ed28386461cff3de26a74e4945e (patch) | |
tree | 9df1d20fe43c48ae48d2628abe364b0427c8dee7 | |
parent | 13985a08763b13f5b1d63c6e904f91ff67171774 (diff) | |
download | apimagic-d0ae4c78e0cc0ed28386461cff3de26a74e4945e.tar.bz2 apimagic-d0ae4c78e0cc0ed28386461cff3de26a74e4945e.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 |