summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 4 insertions, 4 deletions
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