diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-17 15:55:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-17 15:55:19 +0000 |
commit | 408382a4347698f916fe11f07739e61379861b1c (patch) | |
tree | 2bc50354538f993fbc1072ffc785b453dbc4be3d /vhook/Makefile | |
parent | 0e16a1fc92fabe2b54af7479182cb8d922340104 (diff) | |
download | ffmpeg-408382a4347698f916fe11f07739e61379861b1c.tar.gz |
Make vhook CFLAGS handling less confusing.
Originally committed as revision 6012 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/Makefile')
-rw-r--r-- | vhook/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 7e9204c545..13353551b4 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -2,7 +2,7 @@ include ../config.mak VPATH=$(SRC_PATH)/vhook -CFLAGS=-fPIC $(SHCFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat \ +CFLAGS=$(VHOOKCFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavformat \ -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -DHAVE_AV_CONFIG_H HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF) @@ -35,7 +35,7 @@ uninstall: -rmdir "$(shlibdir)/vhook/" %$(SLIBSUF): %.o - $(CC) $(LDFLAGS) -g -o $@ $(VHOOKFLAGS) $< + $(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |