summaryrefslogtreecommitdiff
path: root/codecs/Makefile
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-01-10 00:17:02 +0000
committerRussell Bryant <russell@russellbryant.com>2008-01-10 00:17:02 +0000
commit0da003367510bd8b0a0443566a2014892ea95f29 (patch)
tree94d7be9ea14a9ab47d3387e7665a0da4e1313921 /codecs/Makefile
parent857e3412f42b4de2ccd612b436e47addbe337c62 (diff)
Fix this so it doesn't force codec_g722 to get relinked every time
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@97652 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'codecs/Makefile')
-rw-r--r--codecs/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/codecs/Makefile b/codecs/Makefile
index f4fc76211..b7647b2e5 100644
--- a/codecs/Makefile
+++ b/codecs/Makefile
@@ -50,9 +50,9 @@ $(LIBILBC):
$(if $(filter codec_ilbc,$(EMBEDDED_MODS)),modules.link,codec_ilbc.so): $(LIBILBC)
-$(LIBG722):
+FORCE:
+
+$(LIBG722): FORCE
@$(MAKE) -C g722 all
$(if $(filter codec_g722,$(EMBEDDED_MODS)),modules.link,codec_g722.so): $(LIBG722)
-
-.PHONY: $(LIBG722)