diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-04-04 03:12:26 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-04-04 03:32:30 +0300 |
commit | ce2c37356c674e5893f80786616355b4659b43ad (patch) | |
tree | 8da7297a20bcee66f73eaddcd42a84483a0b30d1 /data/frames/Makefile | |
parent | a4c13e7ce77b86cf36bc6b0a79220b97f8b2a1b8 (diff) |
Convert from make to meson
Meson makes cross compilation easier. Replace the make-based build
system with meson.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'data/frames/Makefile')
-rw-r--r-- | data/frames/Makefile | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/data/frames/Makefile b/data/frames/Makefile deleted file mode 100644 index 026cbdd..0000000 --- a/data/frames/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# SPDX-License-Identifier: CC0-1.0 - -frames=$(patsubst %.pnm.gz,%.pnm,$(wildcard *.pnm.gz)) - -all: - ./gen-lut.py - -clean: - @rm -f *.bin - -%.pnm: %.pnm.gz - gzip -dk $< - -install: $(frames) - mkdir -p $(INSTALL_DIR)/frames/ - mv $(frames) $(INSTALL_DIR)/frames/ - cp *.bin $(INSTALL_DIR)/frames/ |