diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-15 08:25:35 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-15 08:25:35 +0100 |
commit | c7c47cdf23892f7209bbd2acaf420a8d34336406 (patch) | |
tree | 80b1abbaedd13de9bd188b91c63a887ded603286 /src/Makefile | |
parent | bfcb903f8ff64c55cf3b4d0789369be495e5dac8 (diff) | |
download | advtime-c7c47cdf23892f7209bbd2acaf420a8d34336406.tar.gz advtime-c7c47cdf23892f7209bbd2acaf420a8d34336406.tar.bz2 advtime-c7c47cdf23892f7209bbd2acaf420a8d34336406.zip |
Add frame mix saving for high diffs.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 43087cb..83892e7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,10 +1,13 @@ -CFLAGS=-std=c99 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-unused-parameter -LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec libavutil libswscale` +CFLAGS=-std=c99 -Wall -Wstrict-prototypes -Wmissing-prototypes \ + -Wno-unused-parameter +LIBAV_DECODE_FLAGS=`pkg-config --libs --cflags libavformat libavcodec \ + libavutil libswscale` all: advtime decode_frame frame_to_pgm -advtime: advtime.c video_decode.c - gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) -DDEBUG=0 advtime.c video_decode.c -o $@ +advtime: advtime.c video_decode.c util.c + gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) -DDEBUG=0 advtime.c video_decode.c \ + util.c -o $@ decode_frame: decode_frame.c gcc $(CFLAGS) $(LIBAV_DECODE_FLAGS) decode_frame.c -o $@ |