commit fc920abc6f91fa0727bb540891cd70eb229dd350
parent 780ff646ddaa20bb229b48ae3291733eeca0f7e3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 19 Jul 2023 17:14:36 +0200
Small Makefile clean-up
Remove make.sh from the list of .config file requirements as it is no
longer a requirement. Project dependencies are checked directly in the
Makefile and not in the make.sh script.
Delete duplicate file in clean target.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -69,7 +69,7 @@ $(LIBNAME_STATIC): $(OBJ)
$(AR) -rc $@ $?
$(RANLIB) $@
-.config__: config.mk make.sh .simd
+.config__: config.mk .simd
@if [ "$(SIMD_WIDTH)" = "128" ] || [ "$(SIMD_WIDTH)" = "256" ]; then \
if ! $(PKG_CONFIG) --atleast-version $(RSIMD_VERSION) rsimd; then \
echo "rsimd $(RSIMD_VERSION) not found"; exit 1; fi; fi
@@ -95,7 +95,7 @@ $(LIBNAME_STATIC): $(OBJ)
all: build_library build_tests
clean: clean_test
- rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) .config .simd .test .simd ssf.pc ssf-local.pc
+ rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) .config .simd .test ssf.pc ssf-local.pc
distclean: clean
rm -f $(DEP) $(TEST_DEP)