Browse Source
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
master
torrinfail
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Makefile
|
|
@ -1,7 +1,7 @@ |
|
|
|
PREFIX ?= /usr/local |
|
|
|
CC ?= cc |
|
|
|
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: |
|
|
|
rm -f *.o *.gch dwmblocks |
|
|
|
install: output |
|
|
|