diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-17 22:22:40 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-17 22:22:40 +0400 |
commit | f90dc7d0cbfbf04ca90b9f4f8d7e1402482b840a (patch) | |
tree | ed763a273f33f3b667fb3d7e7b61e4c91bfba7a3 | |
parent | 4c03a6cd2038e3175e03c489845791b606c1cc06 (diff) |
Makefile: target `depcheck` named to `check`
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -21,7 +21,7 @@ GITCONFIG = $(HOME)/.gitconfig COPY = cp -r LINK = ln -sf -all: config scripts directory depcheck +all: config scripts directory check full: config scripts git directory desktop @@ -84,7 +84,7 @@ $(DWM) $(ST) $(DMENU) $(SLSTATUS): tar -xf $< cd $@; PREFIX=~/.local make install -depcheck: +check: @-./dep.sh dist: clean @@ -100,4 +100,4 @@ clean: $(DMENU) $(DMENU).tar.gz \ $(SLSTATUS) $(SLSTATUS).tar.gz -.PHONY: all config desktop scripts server arch-linux directory full depcheck +.PHONY: all config desktop scripts server arch-linux directory full check |