commit 7821aac0d23b344c10f64e4ec71162032721787f
parent a1c80d9b23dcf671cb8d0f8c366eb66391604bac
Author: Dylan Araps <dylan.araps@gmail.com>
Date: Thu, 20 Feb 2020 18:41:45 +0200
sowm: Fix Makefile
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) $(CFLAGS) $(LDFLAGS) -O3 -o sowm sowm.c -lX11
+ $(CC) -O3 $(CFLAGS) -lX11 $(LDFLAGS) -o sowm sowm.c
install: all
install -Dm755 sowm $(DESTDIR)$(BINDIR)/sowm