]> git.armaanb.net Git - dwmblocks.git/commitdiff
Fixed argument order for gcc
authorTaylor Henderson <tph5595@users.noreply.github.com>
Sat, 30 May 2020 01:22:34 +0000 (21:22 -0400)
committerGitHub <noreply@github.com>
Sat, 30 May 2020 01:22:34 +0000 (21:22 -0400)
Makefile

index c45a56304b928a426a4e50892cda3d56b5b61c4a..b12bff61f4ba9aef27b7540709cdeea34efbc153 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 PREFIX ?= /usr/local
 
 output: dwmblocks.c blocks.h
 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
 clean:
        rm -f *.o *.gch dwmblocks
 install: output