diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-09-08 17:18:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-09-08 17:18:46 +0000 |
commit | ca373eb7e4b8941f7999d12cec636be80dcca49f (patch) | |
tree | ff37fd76bd0328e5e48a37926e9a7a63d719e3f5 /vhook | |
parent | 8e16b25cc1122c8c643fd94774d537b36bfbbce6 (diff) | |
download | ffmpeg-ca373eb7e4b8941f7999d12cec636be80dcca49f.tar.gz |
Add -g to LDFLAGS instead of adding it to the command line.
Originally committed as revision 6198 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 3bb5561066..255a2c6fed 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -4,6 +4,7 @@ VPATH=$(SRC_PATH)/vhook CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \ -I$(SRC_PATH)/libavformat $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H +LDFLAGS+= -g HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF) ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF) @@ -35,7 +36,7 @@ uninstall: -rmdir "$(shlibdir)/vhook/" %$(SLIBSUF): %.o - $(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LIBS_$@) + $(CC) $(LDFLAGS) -o $@ $(VHOOKSHFLAGS) $< $(LIBS_$@) clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |