aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAidan <aidan@ArthurOBSD.localdomain>2019-12-16 14:38:39 -0700
committerAidan <aidan@ArthurOBSD.localdomain>2019-12-16 14:38:39 -0700
commitfefab14beea22fa83ddee6b4d196ead0c9a34a28 (patch)
treeb0b1365dd3f3a6fdaf71c3d965a702d845fc6425 /Makefile
parentAdded ifndef for openbsd compatibility. SIGRTMIN is not defined on (diff)
parentChanged Makefile to use pkg-config to find libraries. (diff)
downloaddwmblocks-fefab14beea22fa83ddee6b4d196ead0c9a34a28.tar.gz
dwmblocks-fefab14beea22fa83ddee6b4d196ead0c9a34a28.tar.bz2
dwmblocks-fefab14beea22fa83ddee6b4d196ead0c9a34a28.tar.xz
dwmblocks-fefab14beea22fa83ddee6b4d196ead0c9a34a28.tar.zst
dwmblocks-fefab14beea22fa83ddee6b4d196ead0c9a34a28.zip
Merge branch 'master' of https://github.com/torrinfail/dwmblocks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 695d123..b75ae9a 100644
--- 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