diff options
author | David Kraeutmann <[email protected]> | 2019-01-16 16:39:14 +0100 |
---|---|---|
committer | David Kraeutmann <[email protected]> | 2019-01-16 16:39:14 +0100 |
commit | 2745fca168498fd8424482a0aaf4d412692e7ce4 (patch) | |
tree | 961885b3254bf7de6757a966acd42f767b714c7e /Makefile | |
parent | 3048372ad8d1e117b6ffd60e12c276ca575a6f74 (diff) |
Fix tinywl linking order (#1463)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ tinywl: tinywl.c xdg-shell-protocol.h xdg-shell-protocol.c $(CC) $(CFLAGS) \ -g -Werror -I. \ -DWLR_USE_UNSTABLE \ - $(LIBS) \ - -o $@ $< + -o $@ $< \ + $(LIBS) clean: rm -f tinywl xdg-shell-protocol.h xdg-shell-protocol.c |