diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 20:47:11 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:34 -0400 |
commit | 75e7c5f9f170473327373d88a5ac222816e1c923 (patch) | |
tree | f4c755972741359f95a377eb2f3ac655110b9a57 | |
parent | 64304d86c75a8b6caeea5e1341e3ccb7b055499d (diff) | |
download | bcparser-75e7c5f9f170473327373d88a5ac222816e1c923.tar.bz2 bcparser-75e7c5f9f170473327373d88a5ac222816e1c923.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 |