From ce2c37356c674e5893f80786616355b4659b43ad Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 4 Apr 2025 03:12:26 +0300 Subject: Convert from make to meson Meson makes cross compilation easier. Replace the make-based build system with meson. Signed-off-by: Laurent Pinchart --- scripts/Makefile | 10 ---------- scripts/meson.build | 11 +++++++++++ 2 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 scripts/Makefile create mode 100644 scripts/meson.build (limited to 'scripts') diff --git a/scripts/Makefile b/scripts/Makefile deleted file mode 100644 index 6511c3c..0000000 --- a/scripts/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -# SPDX-License-Identifier: CC0-1.0 - -SCRIPTS=$(wildcard *.sh) - -all: - -clean: - -install: - cp $(SCRIPTS) $(INSTALL_DIR)/ diff --git a/scripts/meson.build b/scripts/meson.build new file mode 100644 index 0000000..a86f1a5 --- /dev/null +++ b/scripts/meson.build @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: CC0-1.0 + +scripts = files([ + 'bin2png.sh', + 'histo2png.py', + 'logger.sh', + 'vsp-lib.sh', + 'vsp-tests.sh', +]) + +install_data(scripts, install_dir : get_option('prefix')) -- cgit v1.2.3