summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-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
-