From d64fd2da5ea9a32d4d69ae7484bf53e66702b2c3 Mon Sep 17 00:00:00 2001 From: Julian Rother <julianr@fsmpi.rwth-aachen.de> Date: Mon, 27 Nov 2017 03:03:30 +0100 Subject: [PATCH] Renamed probe worker to extract-xmp --- Makefile | 7 ++++--- probe.c => extract-xmp.c | 0 2 files changed, 4 insertions(+), 3 deletions(-) rename probe.c => extract-xmp.c (100%) diff --git a/Makefile b/Makefile index 5579000..247f9bc 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ +TARGETS = extract-xmp remux thumbnail transcode CFLAGS = -I /usr/include/libxml2 LDFLAGS= -lcurl -lavcodec -lavformat -lavfilter -lswscale -lavutil -lxml2 -all: probe remux thumbnail transcode +all: ${TARGETS} -probe: probe.c *.h util/*.c +extract-xmp: extract-xmp.c *.h util/*.c remux: remux.c *.h util/*.c @@ -13,4 +14,4 @@ thumbnail: thumbnail.c *.h util/*.c transcode: transcode.c *.h util/*.c clean: - rm -f probe remux thumbnail transcode + rm -f ${TARGETS} diff --git a/probe.c b/extract-xmp.c similarity index 100% rename from probe.c rename to extract-xmp.c -- GitLab