commit 8b758f93767a26dca4f3d384c06553d6017a9dc8
parent 15cbc577c1f8303cc39de3db994df69cbf6affba
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 11 Jul 2023 09:47:05 +0200
Minor Makefile formatting adjustments
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
@@ -53,8 +53,8 @@ OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
build_library: .config $(DEP)
- @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done)\
- $$(if [ -n "$(LIBNAME)" ]; then\
+ @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done) \
+ $$(if [ -n "$(LIBNAME)" ]; then\
echo "$(LIBNAME)";\
else\
echo "$(LIBNAME_SHARED)";\
@@ -70,7 +70,6 @@ $(LIBNAME_STATIC): $(OBJ)
$(RANLIB) $@
.config: Makefile config.mk
- @echo "Find packages"
@if ! $(PKG_CONFIG) --atleast-version $(RSYS_VERSION) rsys; then \
echo "rsys $(RSYS_VERSION) not found" >&2; exit 1; fi
@if ! $(PKG_CONFIG) --atleast-version $(RANDOM123_VERSION) random123; then \