star-3daw

Create star-3d geometries from OBJ files
git clone git://git.meso-star.fr/star-3daw.git
Log | Files | Refs | README | LICENSE

commit 832962149c0c27dd54b4abe96cc30ecc37f235a6
parent 5d715331ae4a05f87ade9e3a6101b7dbba6ed20a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 19 Oct 2023 10:18:07 +0200

Correction of typographical problems in the Makefile

Use of tabs and spaces according to expected source formatting

Diffstat:
MMakefile | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/Makefile b/Makefile @@ -30,12 +30,12 @@ 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\ - echo "$(LIBNAME)";\ - else\ - echo "$(LIBNAME_SHARED)";\ - fi) + @$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done) \ + $$(if [ -n "$(LIBNAME)" ]; then \ + echo "$(LIBNAME)"; \ + else \ + echo "$(LIBNAME_SHARED)"; \ + fi) $(OBJ) $(DEP): config.mk @@ -52,13 +52,13 @@ libs3daw.o: $(OBJ) .config: config.mk @if ! $(PKG_CONFIG) --atleast-version $(AW_VERSION) aw; then\ - echo "aw $(AW_VERSION) not found" >&2; exit 1; fi + echo "aw $(AW_VERSION) not found" >&2; exit 1; fi @if ! $(PKG_CONFIG) --atleast-version $(POLYGON_VERSION) polygon; then\ - echo "polygon $(POLYGON_VERSION) not found" >&2; exit 1; fi + echo "polygon $(POLYGON_VERSION) not found" >&2; exit 1; fi @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 $(S3D_VERSION) s3d; then\ - echo "s3d $(S3D_VERSION) not found" >&2; exit 1; fi + echo "s3d $(S3D_VERSION) not found" >&2; exit 1; fi @echo "config done" > $@ .SUFFIXES: .c .d .o