Merge pull request #17 from tph5595/patch-1
Fixed argument order for gcc. This most likely fixes building on debian based systems. Thanks to tph5595
This commit is contained in:
commit
8893f2d08a
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
|||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
CC ?= cc
|
CC ?= cc
|
||||||
output: dwmblocks.c blocks.h
|
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:
|
clean:
|
||||||
rm -f *.o *.gch dwmblocks
|
rm -f *.o *.gch dwmblocks
|
||||||
install: output
|
install: output
|
||||||
|
Loading…
Reference in New Issue
Block a user