diff options
author | Aidan <aidan@ArthurOBSD.localdomain> | 2019-12-12 10:28:06 -0700 |
---|---|---|
committer | Aidan <aidan@ArthurOBSD.localdomain> | 2019-12-12 10:28:06 -0700 |
commit | 3906995607d60e2721a03db78d4f3f4b63cd6afb (patch) | |
tree | eb248ecae5bddcf24803f0adf87e32cbb8a00038 /Makefile | |
parent | 377f9903318d89934593348cda91c3c8fef4158c (diff) |
Changed Makefile to use pkg-config to find libraries.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 |