commit 0b756fc241324a4c49dba864dd6dfb1298c44fa0
parent 86d45d32e18254fbe7c7aa1c76448984061411ee
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 31 Oct 2023 11:05:29 +0100
Delete libatrstm.o when invoking make clean
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -67,7 +67,7 @@ libatrstm.o: $(OBJ)
@if ! $(PKG_CONFIG) --atleast-version $(ATRTP_VERSION) atrtp; then \
echo "atrtp $(ATRTP_VERSION) not found" >&2; exit 1; fi
@if $(RSIMD_EXISTS); then \
- if ! $(PKG_CONFIG) --atleast-version $(RSIMD_VERSION) rsimd; then \
+ if ! $(PKG_CONFIG) --atleast-version $(RSIMD_VERSION) rsimd; then \
echo "rsimd $(RSIMD_VERSION) not found" >&2; exit 1; fi; fi
@if ! $(PKG_CONFIG) --atleast-version $(RSYS_VERSION) rsys; then \
echo "rsys $(RSYS_VERSION) not found" >&2; exit 1; fi
@@ -142,7 +142,8 @@ uninstall:
all: build_library build_tests
clean: clean_test
- rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME) .config .test atrstm.pc atrstm-local.pc
+ rm -f $(OBJ) $(TEST_OBJ) $(LIBNAME)
+ rm -f .config .test libatrstm.o atrstm.pc atrstm-local.pc
distclean: clean
rm -f $(DEP) $(TEST_DEP)