Introduction
Introduction Statistics Contact Development Disclaimer Help
build: Remove unneeded dependency - sbase - suckless unix tools
git clone git://git.suckless.org/sbase
Log
Files
Refs
README
LICENSE
---
commit 6285c22a07893303bc8719afefe3e878ed6bc887
parent 986bbb9253526d29e056ca57ce1ed87fbf65f920
Author: Roberto E. Vargas Caballero <[email protected]>
Date: Tue, 26 Sep 2023 20:51:30 +0200
build: Remove unneeded dependency
Make will search in the catalogue of rules for a way to
update the target, and in case of finding the dependency
it will apply the rule without a need of specifying that
dependency.
Diffstat:
M Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/Makefile b/Makefile
@@ -187,7 +187,7 @@ MAN = $(BIN:=.1)
all: $(BIN)
-$(BIN): $(LIB) $(@:=.o)
+$(BIN): $(LIB)
$(OBJ): $(HDR) config.mk
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.