aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kraeutmann <kane@kane.cx>2019-01-16 16:39:14 +0100
committerDavid Kraeutmann <kane@kane.cx>2019-01-16 16:39:14 +0100
commit4b3414e065be698a69ab02b63633ba77a62de419 (patch)
tree64ba7148a438140d6475aeaf6f961dfb08bc9d78
parent10a2c4edec5e4f0877ff4afc83178c3f08b4f063 (diff)
Fix tinywl linking order (#1463)
-rw-r--r--tinywl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tinywl/Makefile b/tinywl/Makefile
index 92d2a516..505666f0 100644
--- a/tinywl/Makefile
+++ b/tinywl/Makefile
@@ -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