diff options
author | torrinfail <torrinfail@gmail.com> | 2020-07-28 11:07:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 11:07:43 -0600 |
commit | 8893f2d08aed826532fbb7a7b63e20c5bd938563 (patch) | |
tree | 066ab26ff3b37041707d6a0671e0f43a6db25ad2 /Makefile | |
parent | dcb198d7d7da45b8d7cd2d241b42f8405bd049b1 (diff) | |
parent | 7a570d5760759329692f98b3514662cf673ea92e (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
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |