summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2026-02-12 14:59:57 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2026-02-12 14:59:57 +0200
commit3bf1c3bfc25a780dda8333653b80932cb1e422a8 (patch)
tree4bd055a99e0cb6982748f6f13591110d14fadfdd
parent1f08bc7b3c34bb2028d23fd550b261f6b29f07eb (diff)
Remove make supportHEADmaster
Make has been deprecated in favour of meson 5 years ago. Drop make support. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
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
-