summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Henderson <tph5595@users.noreply.github.com>2020-05-29 21:22:34 -0400
committerGitHub <noreply@github.com>2020-05-29 21:22:34 -0400
commite62fbe64994a8d0c38edf806f641826eb3a2b430 (patch)
tree5ea5e2207d30dc0d5ed5d9acac43ddadebbfc4ec
parent6e0519df3aeba97276d18a8e4bb7d41df675634c (diff)
Fixed argument order for gcc
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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