commit: 0c2a6b12d487a5cc6c4e94cba5fbca1ab1a77921
parent: 3262c9eb81635868bc7fd325f23d36944eac85e6
author: Chris Noxz <chris@noxz.tech>
date: Fri, 8 Dec 2023 19:07:21 +0100
Clean up Makefile
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/Makefile b/Makefile
@@ -6,13 +6,7 @@ include config.mk
SRC = drw.c dwm.c util.c
OBJ = ${SRC:.c=.o}
-all: options dwm
-
-options:
- @echo dwm build options:
- @echo "CFLAGS = ${CFLAGS}"
- @echo "LDFLAGS = ${LDFLAGS}"
- @echo "CC = ${CC}"
+all: dwm
.c.o:
${CC} -c ${CFLAGS} $<
@@ -50,4 +44,4 @@ uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
${DESTDIR}${MANPREFIX}/man1/dwm.1
-.PHONY: all options clean dist install uninstall
+.PHONY: all clean dist install uninstall