From 8fce34c9d252f11d8c3c5aa5f2a4c3ff9feaa4d7 Mon Sep 17 00:00:00 2001 From: Julian Rother <julianr@fsmpi.rwth-aachen.de> Date: Sun, 26 Nov 2017 03:40:12 +0100 Subject: [PATCH] Added simplistic makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5579000 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ + +CFLAGS = -I /usr/include/libxml2 +LDFLAGS= -lcurl -lavcodec -lavformat -lavfilter -lswscale -lavutil -lxml2 + +all: probe remux thumbnail transcode + +probe: probe.c *.h util/*.c + +remux: remux.c *.h util/*.c + +thumbnail: thumbnail.c *.h util/*.c + +transcode: transcode.c *.h util/*.c + +clean: + rm -f probe remux thumbnail transcode -- GitLab