?? makefile.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 + -