diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 20:47:11 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-07-07 20:47:11 -0400 |
commit | 428dfae62cf9ffa70caaa85bd32edcdfac241f62 (patch) | |
tree | ebb217d4d9d00f66bcaa4cf5a61fcd3b15eb7de1 | |
parent | 59b43e96fa53e4f121fcc300631faf7980b9cddb (diff) | |
download | slibtool-428dfae62cf9ffa70caaa85bd32edcdfac241f62.tar.bz2 slibtool-428dfae62cf9ffa70caaa85bd32edcdfac241f62.tar.xz |
build system: all-shared front-end variant: fix ordering of -l$(PACKAGE).
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index f3f41bf..f653626 100644 --- a/Makefile.in +++ b/Makefile.in @@ -228,7 +228,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) $(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) rm -f app.tag - $(CC) -o $@ $(APP_OBJS) -l$(PACKAGE) $(LDFLAGS_SHARED) + $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_SHARED) -l$(PACKAGE) $(STATIC_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag |