Browse Source

Fixed argument order for gcc

master
Taylor Henderson 5 years ago
committed by GitHub
parent
commit
e62fbe6499
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@ -1,7 +1,7 @@
PREFIX ?= /usr/local
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


Loading…
Cancel
Save