diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 21:13:53 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:46 -0400 |
commit | cf1fe01f39e6a74d1f0e3e9b5533f9ea25a535ad (patch) | |
tree | dac07ea56a951f2af793e777199d5965fd69fd7d | |
parent | 156ce5c2f9ac2859a2084df15c085ab90a9cd15b (diff) | |
download | u16ports-cf1fe01f39e6a74d1f0e3e9b5533f9ea25a535ad.tar.bz2 u16ports-cf1fe01f39e6a74d1f0e3e9b5533f9ea25a535ad.tar.xz |
build system: all-shared binary: added missing build-dep on $(SHARED_SOLINK).
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f653626..917d875 100644 --- a/Makefile.in +++ b/Makefile.in @@ -226,7 +226,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag $(CC) -o $@ $^ $(LDFLAGS_APP) -$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) +$(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_SHARED) -l$(PACKAGE) |