From 3bf1c3bfc25a780dda8333653b80932cb1e422a8 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 12 Feb 2026 14:59:57 +0200 Subject: Remove make support Make has been deprecated in favour of meson 5 years ago. Drop make support. Signed-off-by: Laurent Pinchart --- Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 8965ad7..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -CROSS_COMPILE ?= - -CC := $(CROSS_COMPILE)gcc -CFLAGS ?= -O2 -W -Wall -Iinclude -LDFLAGS ?= -LIBS := -lrt - -$(warning WARNING: Makefile support is deprecated, please switch to meson) - -%.o : %.c - $(CC) $(CFLAGS) -c -o $@ $< - -all: yavta - -yavta: yavta.o - $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) - -clean: - -rm -f *.o - -rm -f yavta - -- cgit v1.2.3