From e62fbe64994a8d0c38edf806f641826eb3a2b430 Mon Sep 17 00:00:00 2001
From: Taylor Henderson <tph5595@users.noreply.github.com>
Date: Fri, 29 May 2020 21:22:34 -0400
Subject: Fixed argument order for gcc

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index c45a563..b12bff6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 PREFIX ?= /usr/local
 
 output: dwmblocks.c blocks.h
-	cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
+	cc dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
 clean:
 	rm -f *.o *.gch dwmblocks
 install: output
-- 
cgit v1.2.1