Compare commits

..

8 Commits

Author SHA1 Message Date
celso ef72de58ff changed MODKEY from alt to meta 2023-07-17 19:25:40 -03:00
celso d58b4c6b0b applied hardware volume keys patch 2023-07-17 19:22:35 -03:00
celso 0d2c37c359 added movekeyboard patch 2023-07-17 19:11:47 -03:00
celso ca64e3efa3 applied focusonclick patch 2023-07-17 19:08:45 -03:00
celso e0fd52595e applied gridmode patch 2023-07-17 19:02:04 -03:00
celso 789a1eb70a applied resizecorners patch 2023-07-17 18:59:16 -03:00
celso f8dbf4fcb8 applied adjacenttag-spikvacant patch 2023-07-17 18:58:46 -03:00
celso 6dc040b178 applied hide vacant tags patch 2023-07-17 18:53:22 -03:00
1 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,13 @@ include config.mk
SRC = drw.c dwm.c util.c
OBJ = ${SRC:.c=.o}
all: dwm
all: options dwm
options:
@echo dwm build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
.c.o:
${CC} -c ${CFLAGS} $<
@ -42,4 +48,4 @@ uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
${DESTDIR}${MANPREFIX}/man1/dwm.1
.PHONY: all clean dist install uninstall
.PHONY: all options clean dist install uninstall