aboutsummaryrefslogtreecommitdiff
path: root/dwm/chadwm/Makefile
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2022-02-11 16:35:29 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2022-02-11 16:35:29 +0000
commite54014dffba9ca9db6f9088017f18fbf4fb02d6e (patch)
tree15cc644ddf7ce3ed353c5d87b0737029da322da8 /dwm/chadwm/Makefile
parent4417eb0a77892f4b24eeb5adc97b8890f14187fb (diff)
parenta6756c60d5481e6b679cbca0369c0d56076de95c (diff)
downloaddotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar.gz
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar.bz2
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar.lz
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar.xz
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.tar.zst
dotfiles-e54014dffba9ca9db6f9088017f18fbf4fb02d6e.zip
Merge branch 'master' of aninternettroll.xyz:aninternettroll/dotfiles
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