aboutsummaryrefslogtreecommitdiff
path: root/dwm/chadwm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dwm/chadwm/Makefile')
-rw-r--r--dwm/chadwm/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/dwm/chadwm/Makefile b/dwm/chadwm/Makefile
index 3341ec3..c05dbdd 100644
--- a/dwm/chadwm/Makefile
+++ b/dwm/chadwm/Makefile
@@ -4,9 +4,7 @@
include config.mk
SRC = drw.c dwm.c util.c
-cfiles = $(wildcard ./*.c)
-hfiles = $(wildcard ./*.h)
-ofiles = $(cfiles:.c=.o)
+OBJ = ${SRC:.c=.o}
all: options dwm
@@ -50,7 +48,4 @@ uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/dwm\
${DESTDIR}${MANPREFIX}/man1/dwm.1
-format:
- clang-format -i -style=file $(cfiles) $(hfiles)
-
.PHONY: all options clean dist install uninstall