star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit 563cfd0787666453dfd038c6dca55c32650637d7
parent 18b61cefe350f094dbfe91255b0d21f1293278c3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  5 Mar 2025 15:40:11 +0100

Rewrite lint target

Automatically checks all shell scripts in the source directory. This
eliminates the need to manually add a check to each script.

Diffstat:
MMakefile | 5++++-
Dlint.mk | 83-------------------------------------------------------------------------------
2 files changed, 4 insertions(+), 84 deletions(-)

diff --git a/Makefile b/Makefile @@ -61,4 +61,7 @@ prefix: cache: mkdir -p "$(CACHE)" -include lint.mk +lint: + @find src -name "*.sh" | sort | xargs -I {} sh -c \ + "printf 'check %s\n' \"\$$1\"; \ + shellcheck -o all -x -P src \"\$$1\"" -- {} diff --git a/lint.mk b/lint.mk @@ -1,83 +0,0 @@ -# Copyright (C) 2023, 2024 |Méso|Star> (contact@meso-star.com) -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - -lint: - shellcheck -o all -x -P src src/atrstm_0.1.1.sh - shellcheck -o all -x -P src src/atrri_0.1.sh - shellcheck -o all -x -P src src/atrtp_0.1.sh - shellcheck -o all -x -P src src/aw_2.1.sh - shellcheck -o all -x -P src src/build.sh - shellcheck -o all -x -P src src/city_generator2_0.3.1.sh - shellcheck -o all -x -P src src/clipper2_1.1.1.sh - shellcheck -o all -x -P src src/clipper2_1.4.sh - shellcheck -o all -x -P src src/edf_0.0.sh - shellcheck -o all -x -P src src/embree_4.0.1.sh - shellcheck -o all -x -P src src/gmsh_4.12.2.sh - shellcheck -o all -x -P src src/htcp_0.1.sh - shellcheck -o all -x -P src src/htgop_0.2.sh - shellcheck -o all -x -P src src/htmie_0.1.sh - shellcheck -o all -x -P src src/htpp_0.5.sh - shellcheck -o all -x -P src src/htrdr_0.10.sh - shellcheck -o all -x -P src src/htrdr_0.11.sh - shellcheck -o all -x -P src src/htsky_0.3.1.sh - shellcheck -o all -x -P src src/libcyaml_1.3.1.sh - shellcheck -o all -x -P src src/libcyaml_1.4.1.sh - shellcheck -o all -x -P src src/mrumtl_0.2.sh - shellcheck -o all -x -P src src/noweb_2.13rc3.sh - shellcheck -o all -x -P src src/profile.sh - shellcheck -o all -x -P src src/polygon_0.2.sh - shellcheck -o all -x -P src src/random123_1.14.0.sh - shellcheck -o all -x -P src src/rnatm_0.1.sh - shellcheck -o all -x -P src src/rngrd_0.1.sh - shellcheck -o all -x -P src src/rnsf_0.1.sh - shellcheck -o all -x -P src src/rnsl_0.1.sh - shellcheck -o all -x -P src src/rsimd_0.5.sh - shellcheck -o all -x -P src src/rsys_0.14.sh - shellcheck -o all -x -P src src/scdoc_1.11.2-r1.sh - shellcheck -o all -x -P src src/sgs.sh - shellcheck -o all -x -P src src/sleef_3.5.2-r0.sh - shellcheck -o all -x -P src src/star-2d_0.7.sh - shellcheck -o all -x -P src src/star-3daw_0.5.sh - shellcheck -o all -x -P src src/star-3d_0.10.sh - shellcheck -o all -x -P src src/star-3dstl_0.4.sh - shellcheck -o all -x -P src src/star-3dut_0.4.sh - shellcheck -o all -x -P src src/star-4v_s_0.6.sh - shellcheck -o all -x -P src src/star-aerosol_0.1.sh - shellcheck -o all -x -P src src/star-buffer_0.1.sh - shellcheck -o all -x -P src src/star-cad_0.5.sh - shellcheck -o all -x -P src src/star-camera_0.2.sh - shellcheck -o all -x -P src src/star-ck_0.1.sh - shellcheck -o all -x -P src src/star-cmap_0.1.sh - shellcheck -o all -x -P src src/star-cpr_0.5.sh - shellcheck -o all -x -P src src/star-cpr_0.5.1.sh - shellcheck -o all -x -P src src/star-enclosures-2d_0.6.sh - shellcheck -o all -x -P src src/star-enclosures-3d_0.7.2.sh - shellcheck -o all -x -P src src/star-engine_0.15.sh - shellcheck -o all -x -P src src/star-geometry-3d_0.2.sh - shellcheck -o all -x -P src src/star-gf_0.3.sh - shellcheck -o all -x -P src src/star-mc_0.6.sh - shellcheck -o all -x -P src src/star-mesh_0.1.sh - shellcheck -o all -x -P src src/star-sf_0.9.sh - shellcheck -o all -x -P src src/star-sp_0.14.sh - shellcheck -o all -x -P src src/star-stl_0.5.1.sh - shellcheck -o all -x -P src src/star-uvm_0.3.1.sh - shellcheck -o all -x -P src src/star-vx_0.3.sh - shellcheck -o all -x -P src src/star-wf_0.0.sh - shellcheck -o all -x -P src src/stardis_0.10.1.sh - shellcheck -o all -x -P src src/stardis_0.11.1.sh - shellcheck -o all -x -P src src/stardis-green_0.5.1.sh - shellcheck -o all -x -P src src/stardis-solver_0.15.2.sh - shellcheck -o all -x -P src src/stardis-solver_0.16.1.sh - shellcheck -o all -x -P src src/tbb_2021.13.0.sh