diff options
author | midipix <writeonce@midipix.org> | 2018-07-07 20:47:11 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-08-05 05:58:44 -0400 |
commit | 14cbcd60280c8ce1b6e12a8fca106f9fa4e6f0c4 (patch) | |
tree | 391367857ce47451bc490698de2d540a883ff0f9 | |
parent | f6265ad1c56052ec1658b9e2473f331cb94a8ae9 (diff) | |
download | ptycon-14cbcd60280c8ce1b6e12a8fca106f9fa4e6f0c4.tar.bz2 ptycon-14cbcd60280c8ce1b6e12a8fca106f9fa4e6f0c4.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 |