summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile7
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