star-sp

Random number generators and distributions
git clone git://git.meso-star.fr/star-sp.git
Log | Files | Refs | README | LICENSE

commit eb558e18b76facf45752d9c1bb70b10b7204a9dd
parent 138d2b227178864493f2d7bcd81c5c97bff0371c
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 19 Oct 2023 12:00:38 +0200

Correction of typographical problems in the Makefile

Use of tabs and spaces according to expected source formatting.

Diffstat:
MMakefile | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile @@ -38,11 +38,11 @@ DEP = $(SRC:.c=.d) build_library: .config $(DEP) @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done) \ - $$(if [ -n "$(LIBNAME)" ]; then\ - echo "$(LIBNAME)";\ - else\ - echo "$(LIBNAME_SHARED)";\ - fi) + $$(if [ -n "$(LIBNAME)" ]; then \ + echo "$(LIBNAME)"; \ + else \ + echo "$(LIBNAME_SHARED)"; \ + fi) $(DEP) $(OBJ): config.mk @@ -59,9 +59,9 @@ libstar-sp.o: $(OBJ) .config: config.mk @if ! $(PKG_CONFIG) --atleast-version $(RSYS_VERSION) rsys; then \ - echo "rsys $(RSYS_VERSION) not found" >&2; exit 1; fi + echo "rsys $(RSYS_VERSION) not found" >&2; exit 1; fi @if ! $(PKG_CONFIG) --atleast-version $(RANDOM123_VERSION) random123; then \ - echo "random123 $(RANDOM123_VERSION) not found" >&2; exit 1; fi + echo "random123 $(RANDOM123_VERSION) not found" >&2; exit 1; fi @echo "config done" > .config .SUFFIXES: .c .d .o