# SPDX-License-Identifier: BSD-2-Clause # # daedalus-v4l2 — userspace tools for Phase 8.2+ verification. CC ?= cc CFLAGS ?= -Wall -Wextra -O2 CFLAGS += -I../include TOOLS := test_chardev_pingpong test_m2m_decode test_m2m_stream all: $(TOOLS) %: %.c $(CC) $(CFLAGS) $< -o $@ clean: rm -f $(TOOLS) .PHONY: all clean