diff options
author | midipix <writeonce@midipix.org> | 2018-11-23 03:54:46 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-23 03:56:07 -0500 |
commit | 859af5cc6f9e5d495e68250a745e5a1d5f105b1e (patch) | |
tree | 822f69f29d61e00b98b90c998a52cb450a557d4f | |
parent | 153677d1bec8326557606fde97824fb1dae42afb (diff) | |
download | u16ports-859af5cc6f9e5d495e68250a745e5a1d5f105b1e.tar.bz2 u16ports-859af5cc6f9e5d495e68250a745e5a1d5f105b1e.tar.xz |
build system: all-shared: use LDFLAGS_APP as before, now with correct ordering.
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9ec7513..887f367 100644 --- a/Makefile.in +++ b/Makefile.in @@ -229,7 +229,7 @@ $(DEFAULT_APP): $(STATIC_OBJS) $(APP_OBJS) $(SHARED_APP): $(SHARED_LIB) $(APP_OBJS) $(SHARED_SOLINK) rm -f app.tag - $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_SHARED) -l$(PACKAGE) + $(CC) -o $@ $(APP_OBJS) $(LDFLAGS_APP) -l$(PACKAGE) $(STATIC_APP): $(STATIC_OBJS) $(APP_OBJS) rm -f app.tag |