summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortorrinfail <torrinfail@gmail.com>2020-07-28 11:07:43 -0600
committerGitHub <noreply@github.com>2020-07-28 11:07:43 -0600
commit8893f2d08aed826532fbb7a7b63e20c5bd938563 (patch)
tree066ab26ff3b37041707d6a0671e0f43a6db25ad2
parentdcb198d7d7da45b8d7cd2d241b42f8405bd049b1 (diff)
parent7a570d5760759329692f98b3514662cf673ea92e (diff)
Merge pull request #17 from tph5595/patch-1
Fixed argument order for gcc. This most likely fixes building on debian based systems. Thanks to tph5595
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3336e3c..ad7e701 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PREFIX ?= /usr/local
CC ?= cc
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