pinosaur
/
dwmblocks.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
377f990
)
Changed Makefile to use pkg-config to find libraries.
author
Aidan
<aidan@ArthurOBSD.localdomain>
Thu, 12 Dec 2019 17:28:06 +0000
(10:28 -0700)
committer
Aidan
<aidan@ArthurOBSD.localdomain>
Thu, 12 Dec 2019 17:28:06 +0000
(10:28 -0700)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
695d123
..
b75ae9a
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