This commit is contained in:
Armin 2026-07-03 12:15:47 +02:00
commit cbbf0f095a
4 changed files with 1699 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
CC ?= cc
CFLAGS = -O2 -Wall -Wextra -Wpedantic $(shell pkg-config --cflags libavformat libavcodec libavutil)
LDLIBS = -lm $(shell pkg-config --libs libavformat libavcodec libavutil)
TARGET = tcd
all: $(TARGET)
$(TARGET): tcd.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS)
clean:
rm -f $(TARGET)
.PHONY: all clean