]> git.armaanb.net Git - dwmblocks.git/commitdiff
Changed Makefile to use pkg-config to find libraries.
authorAidan <aidan@ArthurOBSD.localdomain>
Thu, 12 Dec 2019 17:28:06 +0000 (10:28 -0700)
committerAidan <aidan@ArthurOBSD.localdomain>
Thu, 12 Dec 2019 17:28:06 +0000 (10:28 -0700)
Makefile

index 695d12386a820e88d140c08980e9ab7855b6b903..b75ae9aaa4ed637484ce6f060cdad2389dbb03da 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,5 @@
-output: dwmblocks.o
-       gcc dwmblocks.o -lX11 -o dwmblocks
-dwmblocks.o: dwmblocks.c blocks.h
-       gcc -c -lX11 dwmblocks.c 
+output: dwmblocks.c blocks.h
+       cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
 clean:
        rm -f *.o *.gch dwmblocks
 install: output