mirror of
https://codeberg.org/armin/tcd.git
synced 2026-09-01 05:50:46 +02:00
init
This commit is contained in:
commit
cbbf0f095a
4 changed files with 1699 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue