summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-06-22 15:55:13 +0000
committerRussell Bryant <russell@russellbryant.com>2006-06-22 15:55:13 +0000
commit3daaf2163faa51a828b656e154310ff113b3b4dc (patch)
treed4229e04f780d3a53bc50f9353aacf1ae1d071dd
parente807ea95ab935f6d677a14f370e273d14a94554f (diff)
use .PHONY instead of FORCE
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35510 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/h323/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/h323/Makefile b/channels/h323/Makefile
index a1911e7e9..35023177e 100644
--- a/channels/h323/Makefile
+++ b/channels/h323/Makefile
@@ -4,6 +4,8 @@
# Make file for OpenH323 support layer
#
+.PHONY: Makefile.ast
+
# Verify those options with main Makefile
STDCCFLAGS += -DNDEBUG
STDCCFLAGS += $(shell grep ^DEBUG_THREADS ../../Makefile | sed -e "s/^DEBUG_THREADS[ ]*=//" -e "s/\([^\#]*\)\#.*/\1/")
@@ -31,7 +33,7 @@ $(SOURCES):: Makefile ../../Makefile
libchanh323.a: $(OBJS)
ar crv $@ $(OBJS)
-Makefile.ast: FORCE
+Makefile.ast:
@echo H323CFLAGS = $(STDCCFLAGS) $(OPTCCFLAGS) $(CFLAGS) >$@.tmp
@echo H323LDFLAGS = $(CFLAGS) $(LDFLAGS) >>$@.tmp
@echo H323LDLIBS = $(LDLIBS) $(ENDLDLIBS) $(ENDLDFLAGS) >>$@.tmp
@@ -39,5 +41,3 @@ Makefile.ast: FORCE
clean::
rm -f ast_h323.cxx libchanh323.a Makefile.ast *.dep
-
-FORCE: