From 3f07e361f5f1cb4879ae260b3dae0418db9643fb Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 7 Feb 2022 22:13:43 -0300 Subject: [PATCH] Add LAPTOP flag --- GNUmakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 5673ce8..b7f2fe6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -7,9 +7,11 @@ X11CFLAGS = $(shell pkg-config --cflags x11) X11LIBS = $(shell pkg-config --libs x11) all: dwmblocks sigdwmblocks/sigdwmblocks xgetrootname/xgetrootname +laptop: LFLAG = -DLAPTOP +laptop: install dwmblocks: dwmblocks.c config.h block.h - ${CC} -o $@ -Wno-missing-field-initializers -Wno-unused-parameter ${CFLAGS} ${X11CFLAGS} $< ${X11LIBS} + ${CC} -o $@ -Wno-missing-field-initializers -Wno-unused-parameter ${LFLAG} ${CFLAGS} ${X11CFLAGS} $< ${X11LIBS} E0BLOCKS = $(abspath blocks) # two level escaping of `\', one for sed and one for C