[svn-commits] pcadach: branch pcadach/chan_h323-live r40381 - /team/pcadach/chan_h323-live/...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Aug 18 01:23:12 MST 2006


Author: pcadach
Date: Fri Aug 18 03:23:11 2006
New Revision: 40381

URL: http://svn.digium.com/view/asterisk?rev=40381&view=rev
Log:
Added missing template file channels/h323/Makefile.in

Added:
    team/pcadach/chan_h323-live/channels/h323/Makefile.in   (with props)

Added: team/pcadach/chan_h323-live/channels/h323/Makefile.in
URL: http://svn.digium.com/view/asterisk/team/pcadach/chan_h323-live/channels/h323/Makefile.in?rev=40381&view=auto
==============================================================================
--- team/pcadach/chan_h323-live/channels/h323/Makefile.in (added)
+++ team/pcadach/chan_h323-live/channels/h323/Makefile.in Fri Aug 18 03:23:11 2006
@@ -1,0 +1,43 @@
+#
+# Makefile
+#
+# 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/")
+STDCCFLAGS	+= -I../../include -include "asterisk/autoconfig.h"
+STDCCFLAGS	+= -fPIC
+#OPTCCFLAGS	+=
+CFLAGS		+= -pipe
+TARGET		+= libchanh323.a
+TARGET		+= Makefile.ast
+SOURCES		= ast_h323.cxx
+OBJDIR		= .
+
+ifndef OPENH323DIR
+OPENH323DIR=@OPENH323DIR@
+endif
+
+include $(OPENH323DIR)/openh323u.mak
+
+$(SOURCES)::	$(SOURCES:.cxx=.cpp)
+	ln -f $< $@
+
+$(SOURCES)::	Makefile ../../Makefile
+	touch $(SOURCES)
+
+libchanh323.a:	$(OBJS)
+	ar crv $@ $(OBJS)
+
+Makefile.ast:
+	@echo H323CFLAGS  = $(STDCCFLAGS) $(OPTCCFLAGS) $(CFLAGS) >$@.tmp
+	@echo H323LDFLAGS = $(CFLAGS) $(LDFLAGS) >>$@.tmp
+	@echo H323LDLIBS  = $(LDLIBS) $(ENDLDLIBS) $(ENDLDFLAGS) >>$@.tmp
+	@if [ -r $@ ] && cmp -s $@ $@.tmp; then rm -f $@.tmp; else mv -f $@.tmp $@; fi
+
+clean::
+	rm -f ast_h323.cxx libchanh323.a Makefile.ast *.dep

Propchange: team/pcadach/chan_h323-live/channels/h323/Makefile.in
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/pcadach/chan_h323-live/channels/h323/Makefile.in
------------------------------------------------------------------------------
    svn:keywords = Author ID Date Revision

Propchange: team/pcadach/chan_h323-live/channels/h323/Makefile.in
------------------------------------------------------------------------------
    svn:mime-type = text/plain



More information about the svn-commits mailing list