diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2013-02-02 03:49:45 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2013-02-02 03:49:45 +0100 |
commit | 170ed3e19bb892d8c5a5e758d7e45789c7c22757 (patch) | |
tree | 6e0bf896997a365ca063000b0722b872a3fccd31 /src | |
parent | 4973beef6d094ea0d43bd1a3b1d5ce6b9c18d2f6 (diff) | |
download | advtime-170ed3e19bb892d8c5a5e758d7e45789c7c22757.tar.gz advtime-170ed3e19bb892d8c5a5e758d7e45789c7c22757.tar.bz2 advtime-170ed3e19bb892d8c5a5e758d7e45789c7c22757.zip |
add findcut
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 7 |
1 files 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 |