43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
PREFIX = /usr/local
|
|
|
|
CC = gcc
|
|
CFLAGS = -O3 -Wall -Wextra
|
|
|
|
X11CFLAGS = $(shell pkg-config --cflags x11)
|
|
X11LIBS = $(shell pkg-config --libs x11)
|
|
|
|
all: dwmblocks sigdwmblocks/sigdwmblocks xgetrootname/xgetrootname
|
|
|
|
dwmblocks: dwmblocks.c config.h block.h
|
|
${CC} -o $@ -Wno-missing-field-initializers -Wno-unused-parameter ${CFLAGS} ${X11CFLAGS} $< ${X11LIBS}
|
|
|
|
E0BLOCKS = $(abspath blocks)
|
|
# two level escaping of '\', one for sed and one for C
|
|
E1BLOCKS = $(subst \,\\\\,${E0BLOCKS})
|
|
# escaping special character '&' and delimiter '=' for sed
|
|
E2BLOCKS = $(subst &,\&,${E1BLOCKS})
|
|
EFBLOCKS = $(subst =,\=,${E2BLOCKS})
|
|
|
|
config.h:
|
|
sed '2s=<path to the folder containing block scripts>=${EFBLOCKS}=' config.def.h >$@
|
|
|
|
sigdwmblocks/sigdwmblocks: sigdwmblocks/sigdwmblocks.c
|
|
${CC} -o $@ ${CFLAGS} $<
|
|
|
|
xgetrootname/xgetrootname: xgetrootname/xgetrootname.c
|
|
${CC} -o $@ ${CFLAGS} ${X11CFLAGS} $< ${X11LIBS}
|
|
|
|
clean:
|
|
rm -f dwmblocks sigdwmblocks/sigdwmblocks xgetrootname/xgetrootname
|
|
|
|
install: all
|
|
mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
install -m 0755 dwmblocks ${DESTDIR}${PREFIX}/bin/dwmblocks
|
|
install -m 0755 sigdwmblocks/sigdwmblocks ${DESTDIR}${PREFIX}/bin/sigdwmblocks
|
|
install -m 0755 xgetrootname/xgetrootname ${DESTDIR}${PREFIX}/bin/xgetrootname
|
|
|
|
uninstall:
|
|
rm -f ${DESTDIR}${PREFIX}/bin/dwmblocks ${DESTDIR}${PREFIX}/bin/sigdwmblocks ${DESTDIR}${PREFIX}/bin/xgetrootname
|
|
|
|
.PHONY: all clean install uninstall
|