commit f201a467eabafc760c543c873d32c23f810d38ca
parent 7821aac0d23b344c10f64e4ec71162032721787f
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Fri, 21 Feb 2020 18:08:47 +0200
sowm: Fix linker errors. Closes #61
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -10,7 +10,7 @@ config.h:
cp config.def.h config.h
sowm:
- $(CC) -O3 $(CFLAGS) -lX11 $(LDFLAGS) -o sowm sowm.c
+ $(CC) -O3 $(CFLAGS) -o sowm sowm.c -lX11 $(LDFLAGS)
install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm