From 170ed3e19bb892d8c5a5e758d7e45789c7c22757 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Sat, 2 Feb 2013 03:49:45 +0100 Subject: add findcut --- src/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index ac49233..d0ed28d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ CFLAGS=-ggdb -std=c99 -Wall -Wstrict-prototypes -Wmissing-prototypes \ LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec \ libavutil libswscale` -all: cuttime overlap decode_frame frame_to_pgm +all: cuttime overlap findcut decode_frame frame_to_pgm cuttime: cuttime.c video_decode.c util.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) cuttime.c video_decode.c util.c -o $@ @@ -12,6 +12,9 @@ cuttime: cuttime.c video_decode.c util.c overlap: overlap.c video_decode.c util.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) overlap.c video_decode.c util.c -o $@ +findcut: findcut.c video_decode.c util.c + gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) findcut.c video_decode.c util.c -o $@ + decode_frame: decode_frame.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) decode_frame.c -o $@ @@ -19,4 +22,4 @@ frame_to_pgm: frame_to_pgm.c video_decode.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) frame_to_pgm.c video_decode.c -o $@ clean: - rm -f cuttime decode_frame frame_to_pgm + rm -f cuttime overlap findcut decode_frame frame_to_pgm -- cgit