⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 利用rtp库实现实时语音传送
💻 IN
字号:
# General variables, needed because of the configure scriptprefix		= @prefix@exec_prefix	= @exec_prefix@# Some variables to easily adapt the version number of the libraryLIBRARYNAME = libjrtpLIBRARYMAJORVERSION = 2LIBRARYMINORVERSION = 8LIBRARYFULLVERSION = $(LIBRARYMAJORVERSION).$(LIBRARYMINORVERSION)LIBRARYFULLNAME = $(LIBRARYNAME).so-$(LIBRARYFULLVERSION)LIBRARYINTERNALNAME = $(LIBRARYNAME).so.$(LIBRARYFULLVERSION)ARCHIVE = $(LIBRARYNAME).aLDFLAGS = @RTP_LDFLAGS@ARFLAGS = @RTP_ARFLAGS@# Where to install the libraries. This is determined by the configure# scriptLIBRARYINSTALLDIR = @libdir@HEADERINSTALLDIR = @includedir@/jrtplib# Flags and objectsCC 	= @CXX@FLAGS 	= @RTP_CFLAGS@OBJECTS = rtpconnection.o rtpcontributingsources.o rtpdestlist.o \          rtperror.o rtpiptable.o rtppacket.o rtppacketprocessor.o \          rtprandom.o rtprtcpmodule.o rtpsession.o rtpsourcedata.o \          rtpsourcedescription.o rtpsources.o rtpsrclist.o rtptimeutil.o \          rtplocalinfo.o rtphandlers.o rtpdebug.o rtpmcasttable.o# Rules to make the compilation possible.SUFFIXES: .cpp.cpp.o:	$(CC) $(FLAGS) -c -o $@ $<all: @RTP_TARGETS@clean:	rm -f $(OBJECTS) $(LIBRARYFULLNAME) $(ARCHIVE)distclean: clean	rm -f config.log config.cache config.status Makefile rtpconfig_unix.h	dummymsg:	@echo "Nothing to build"	sharedlib: $(LIBRARYFULLNAME)	staticlib: $(ARCHIVE)install: all	if ! [ -d $(LIBRARYINSTALLDIR) ] ; then \		mkdir -m 755 -p $(LIBRARYINSTALLDIR) ; \	fi	if ! [ -d $(HEADERINSTALLDIR) ] ; then \		mkdir -m 755 -p $(HEADERINSTALLDIR) ; \	fi	if [ -e $(LIBRARYFULLNAME) ] ; then \		install -m 755 $(LIBRARYFULLNAME) $(LIBRARYINSTALLDIR) ; \	fi	if [ -e $(ARCHIVE) ] ; then \		install -m 644 $(ARCHIVE) $(LIBRARYINSTALLDIR) ; \	fi	install -m 644 *.h $(HEADERINSTALLDIR)	(cd $(LIBRARYINSTALLDIR) ; ln -sf $(LIBRARYFULLNAME) $(LIBRARYINTERNALNAME) )	(cd $(LIBRARYINSTALLDIR) ; ln -sf $(LIBRARYFULLNAME) $(LIBRARYNAME).so )	$(LIBRARYFULLNAME): $(OBJECTS)	rm -f $(LIBRARYFULLNAME)	ld $(LDFLAGS) $(LIBRARYINTERNALNAME) -o $(LIBRARYFULLNAME) $(OBJECTS)$(ARCHIVE): $(OBJECTS)	rm -f $(ARCHIVE)	ar $(ARFLAGS) $(ARCHIVE) $(OBJECTS)rtpconnection.o: rtpconnection.cpprtpcontributingsources.o: rtpcontributingsources.cpprtpdestlist.o: rtpdestlist.cpprtperror.o: rtperror.cpprtpiptable.o: rtpiptable.cpprtppacket.o: rtppacket.cpprtppacketprocessor.o: rtppacketprocessor.cpprtprandom.o: rtprandom.cpprtprtcpmodule.o: rtprtcpmodule.cpprtpsession.o: rtpsession.cpprtpsourcedata.o: rtpsourcedata.cpprtpsourcedescription.o: rtpsourcedescription.cpprtpsources.o: rtpsources.cpprtpsrclist.o: rtpsrclist.cpprtptimeutil.o: rtptimeutil.cpprtplocalinfo.o: rtplocalinfo.cpprtphandlers.o: rtphandlers.cpprtpdebug.o: rtpdebug.cpprtpmcasttable.o: rtpmcasttable.cpp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -