diff options
author | midipix <writeonce@midipix.org> | 2018-11-25 06:01:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-25 09:18:59 -0500 |
commit | 386b0e4963963468398f7c211f682f8353b64107 (patch) | |
tree | 9e4c46486737470468dc1250564b27a6e7a368e5 | |
parent | ff172c0961ae3904fd22c1fb492d4577d490e691 (diff) | |
download | w32lib-386b0e4963963468398f7c211f682f8353b64107.tar.bz2 w32lib-386b0e4963963468398f7c211f682f8353b64107.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) |