summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2023-12-31 02:10:36 +0000
committerGitHub <noreply@github.com>2023-12-31 02:10:36 +0000
commit7fd5037c284fcb7795bfd67a0985b05ddc8f7069 (patch)
tree497a2a8cdf0be3f963442c219aef8c74d252b24f /Makefile
parent3d174e2cc89ddf9fd49802b1b4c85b7ab69de7b1 (diff)
update to dwm 6.4
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 77bcbc0..126194e 100644
--- 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} $<
@@ -26,7 +20,7 @@ dwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
- rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
+ rm -f dwm ${OBJ} *.orig dwm-${VERSION}.tar.gz
dist: clean
mkdir -p dwm-${VERSION}
@@ -48,4 +42,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