From 439cfb4b4bdd5b92fa8ab73f0c7ca013c2d598ff Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Fri, 1 Feb 2013 06:15:38 +0100 Subject: rename advtime into cuttime --- src/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 2a029c3..ac49233 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,10 +4,10 @@ CFLAGS=-ggdb -std=c99 -Wall -Wstrict-prototypes -Wmissing-prototypes \ LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec \ libavutil libswscale` -all: advtime overlap decode_frame frame_to_pgm +all: cuttime overlap decode_frame frame_to_pgm -advtime: advtime.c video_decode.c util.c - gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) advtime.c video_decode.c util.c -o $@ +cuttime: cuttime.c video_decode.c util.c + gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) cuttime.c video_decode.c util.c -o $@ overlap: overlap.c video_decode.c util.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) overlap.c video_decode.c util.c -o $@ @@ -19,4 +19,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 advtime decode_frame frame_to_pgm + rm -f cuttime decode_frame frame_to_pgm -- cgit