Fix LDFLAGS for Ubuntu

This commit is contained in:
Victor Timofei 2020-12-23 19:52:47 +02:00
parent b6b0be4f4f
commit af5389ce30
Failed to generate hash of commit

View file

@ -1,8 +1,9 @@
PREFIX ?= /usr/local
CC ?= cc
LDFLAGS = -lX11
output: dwmblocks.c blocks.def.h blocks.h
${CC} `pkg-config --cflags x11 --libs x11` dwmblocks.c -o dwmblocks
${CC} dwmblocks.c $(LDFLAGS) -o dwmblocks
blocks.h:
cp blocks.def.h $@