diff options
author | midipix <writeonce@midipix.org> | 2018-11-23 03:54:46 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-23 03:56:05 -0500 |
commit | ab22f06bd5e1b938717ac728b9a39f46d7d2709e (patch) | |
tree | c0d4c9f3f336d68d7b9bcb61865b0c2f2efab0a4 | |
parent | 4d6b809ca8eb1b6d27e578fb28ed24d2eb9b5b93 (diff) | |
download | bfirm-ab22f06bd5e1b938717ac728b9a39f46d7d2709e.tar.bz2 bfirm-ab22f06bd5e1b938717ac728b9a39f46d7d2709e.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 |