From 239e1bef6ca52ad238ca04527f25c81d9670372a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 27 Jan 2022 04:08:14 +0000 Subject: [PATCH] Add LAPTOP flag --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c05dbdd..6036efc 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,8 @@ SRC = drw.c dwm.c util.c OBJ = ${SRC:.c=.o} all: options dwm +laptop: LFLAG = -DLAPTOP +laptop: install options: @echo dwm build options: @@ -15,7 +17,7 @@ options: @echo "CC = ${CC}" .c.o: - ${CC} -c ${CFLAGS} $< + ${CC} -c ${LFLAG} ${CFLAGS} $< ${OBJ}: config.h config.mk @@ -48,4 +50,4 @@ uninstall: rm -f ${DESTDIR}${PREFIX}/bin/dwm\ ${DESTDIR}${MANPREFIX}/man1/dwm.1 -.PHONY: all options clean dist install uninstall +.PHONY: all laptop options clean dist install uninstall