This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix 'make depend' for libpostproc.
Originally committed as revision 6238 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun
19 years ago
parent
e179fbc850
commit
691c480e7f
2 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
Makefile
+2
-0
libpostproc/Makefile
+ 3
- 0
Makefile
View File
@@ -204,6 +204,9 @@ depend: .depend
$(MAKE) -C libavutil depend
$(MAKE) -C libavcodec depend
$(MAKE) -C libavformat depend
ifeq ($(CONFIG_PP),yes)
$(MAKE) -C libpostproc depend
endif
ifeq ($(BUILD_VHOOK),yes)
$(MAKE) -C vhook depend
endif
+ 2
- 0
libpostproc/Makefile
View File
@@ -20,6 +20,8 @@ CFLAGS = -I.. -I$(SRC_PATH)/libavcodec $(OPTFLAGS)
include $(SRC_PATH)/common.mak
depend: postprocess.c
ifeq ($(BUILD_SHARED),yes)
postprocess_pic.o: postprocess.c
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
Write
Preview
Loading…
Cancel
Save