diff options
author | midipix <writeonce@midipix.org> | 2018-11-23 03:54:46 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-11-23 03:56:06 -0500 |
commit | 97caf72b2fd8f5857c5b3117c586da24fc39cea9 (patch) | |
tree | a66a19bd5edb68c4d11662a7708de1f25949a47a | |
parent | 99366db3be997e2eef2a3c9a06421e80e9d5e2cf (diff) | |
download | pemagine-97caf72b2fd8f5857c5b3117c586da24fc39cea9.tar.bz2 pemagine-97caf72b2fd8f5857c5b3117c586da24fc39cea9.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 |