summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJan Klemkow <j.klemkow@wemelug.de>2013-01-31 17:11:26 +0100
committerJan Klemkow <j.klemkow@wemelug.de>2013-01-31 17:11:26 +0100
commit8bdae5adf908b361447d337cf632f66a3818711c (patch)
tree93fc7a1844e11c6e26ea0f4e5df07411f83463f5 /src/Makefile
parent3da25dec5a11e2a36d5d663c9bff0166775b92e1 (diff)
downloadadvtime-8bdae5adf908b361447d337cf632f66a3818711c.tar.gz
advtime-8bdae5adf908b361447d337cf632f66a3818711c.tar.bz2
advtime-8bdae5adf908b361447d337cf632f66a3818711c.zip
add overlap tool
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 9e6624a..d2e6a94 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,11 +3,14 @@ CFLAGS=-ggdb -std=c99 -Wall -Wstrict-prototypes -Wmissing-prototypes \
LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec \
libavutil libswscale`
-all: advtime decode_frame frame_to_pgm
+all: advtime 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 $@
+overlap: overlap.c video_decode.c util.c
+ gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) overlap.c video_decode.c util.c -o $@
+
decode_frame: decode_frame.c
gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) decode_frame.c -o $@