diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 06:01:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 09:17:30 -0500 |
commit | 9e8ee44b1e5a2ba42adfdddaa6882f80a5fa473a (patch) | |
tree | 0d763e87556ba98684afcd985eef0913e23c461e | |
parent | 05b39e6e9b5d57100e6003230afb1fdb2d8b625c (diff) | |
download | apimagic-9e8ee44b1e5a2ba42adfdddaa6882f80a5fa473a.tar.bz2 apimagic-9e8ee44b1e5a2ba42adfdddaa6882f80a5fa473a.tar.xz |
build system: --all-shared: properly express primary shared library dependency.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 887f367..ad393f7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -227,7 +227,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag $(CC) -o $@ $^ $(LDFLAGS_APP) -$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) +$(SHARED_APP): $(DSO_REF_SONAME) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_APP) -l$(PACKAGE) |