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

📄 makefile.in

📁 SCTP 协议实现源代码
💻 IN
📖 第 1 页 / 共 5 页
字号:
program_transform_name = @program_transform_name@psdir = @psdir@sbindir = @sbindir@sharedstatedir = @sharedstatedir@sysconfdir = @sysconfdir@target_alias = @target_alias@MAINTAINERCLEANFILES = Makefile.in directories.hDISTCLEANFILES = \\\ directories.hCLEANFILES = MOSTLYCLEANFILES = *~ *.[aios] *.bak *.ci *.ioEXTRA_DIST = LATEX = @LATEX@DVIPS = @DVIPS@DVIPDFM = @DVIPDFM@ENSCRIPTBIN = @ENSCRIPTBIN@PS2PDF = @PS2PDF@rootbindir = /binrootsbindir = /sbinrootlibdir = /libpkgsysconfdir = $(sysconfdir)/@PACKAGE@pkgdocdir = $(datadir)/@PACKAGE@vpkgsysconfdir = $(pkgsysconfdir)/v@VERSION@vpkgdatadir = $(pkgdatadir)/v@VERSION@vpkglibdir = $(pkglibdir)/v@VERSION@vpkgdocdir = $(docdir)/v@VERSION@# List here all the directories you want listed in the file to be used# in your programs:directories := \	localedir \	pkgsysconfdir \	rootbindir \	rootlibdir \	rootsbindir \	vpkgdatadir \	vpkgdocdir \	vpkglibdir \	vpkgsysconfdir \	\	bindir \	datadir \	libdir \	pkgdatadir \	pkgdocdir \	pkglibdir \	sbindir# Include these two in all the Makefile.am's!!!# General compilation flagsINCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib AM_CFLAGS = -g -Wall -Wstrict-prototypes -Wimplicit-function-declarationAM_LDFLAGS = -lpthreadLDADD = $(top_builddir)/src/lib/libsctp.la \	$(top_builddir)/src/testlib/libsctputil.laV6FLAGS = -DCONFIG_IPV6=1 -DTEST_V6=1 ${DEFS} ${INCLUDES} ${CFLAGS}# Test programs and libraries to buildPASSING_KERN_TESTS = \	test_assoc_abort \	test_assoc_shutdown \	test_autoclose \	test_basic \	test_fragments \	test_inaddr_any \	test_peeloff \	test_sockopt \	test_connect \	test_connectx \	test_recvmsg \	test_timetolive \	test_sctp_sendrecvmsg \	test_getname \	test_tcp_style\	test_1_to_1_socket_bind_listen \	test_1_to_1_accept_close \	test_1_to_1_connect \	test_1_to_1_connectx \	test_1_to_1_send \	test_1_to_1_sendto \	test_1_to_1_sendmsg \	test_1_to_1_recvfrom \	test_1_to_1_recvmsg \	test_1_to_1_shutdown \	test_1_to_1_sockopt \	test_1_to_1_addrs \	test_1_to_1_nonblock \	test_1_to_1_rtoinfo \	test_1_to_1_events \	test_1_to_1_threads \	test_1_to_1_initmsg_connectPASSING_V6_KERN_TESTS = \	test_basic_v6 \	test_sockopt_v6 \	test_fragments_v6 \	test_inaddr_any_v6 \	test_peeloff_v6 \	test_timetolive_v6 \	test_sctp_sendrecvmsg_v6 \	test_getname_v6 \	test_tcp_style_v6# Specifying the sourcestest_assoc_abort_SOURCES = test_assoc_abort.c test_assoc_shutdown_SOURCES = test_assoc_shutdown.c test_autoclose_SOURCES = test_autoclose.c test_basic_SOURCES = test_basic.c test_fragments_SOURCES = test_fragments.c test_inaddr_any_SOURCES = test_inaddr_any.c test_peeloff_SOURCES = test_peeloff.c test_sockopt_SOURCES = test_sockopt.c test_connect_SOURCES = test_connect.c test_connectx_SOURCES = test_connectx.c test_recvmsg_SOURCES = test_recvmsg.c test_timetolive_SOURCES = test_timetolive.ctest_sctp_sendrecvmsg_SOURCES = test_sctp_sendrecvmsg.ctest_getname_SOURCES = test_getname.c test_tcp_style_SOURCES = test_tcp_style.c test_1_to_1_socket_bind_listen_SOURCES = test_1_to_1_socket_bind_listen.ctest_1_to_1_accept_close_SOURCES = test_1_to_1_accept_close.ctest_1_to_1_connect_SOURCES = test_1_to_1_connect.ctest_1_to_1_connectx_SOURCES = test_1_to_1_connectx.ctest_1_to_1_send_SOURCES = test_1_to_1_send.ctest_1_to_1_sendto_SOURCES = test_1_to_1_sendto.ctest_1_to_1_sendmsg_SOURCES = test_1_to_1_sendmsg.ctest_1_to_1_recvfrom_SOURCES = test_1_to_1_recvfrom.ctest_1_to_1_recvmsg_SOURCES = test_1_to_1_recvmsg.ctest_1_to_1_shutdown_SOURCES = test_1_to_1_shutdown.ctest_1_to_1_sockopt_SOURCES = test_1_to_1_sockopt.ctest_1_to_1_addrs_SOURCES = test_1_to_1_addrs.ctest_1_to_1_nonblock_SOURCES = test_1_to_1_nonblock.ctest_1_to_1_rtoinfo_SOURCES = test_1_to_1_rtoinfo.ctest_1_to_1_events_SOURCES = test_1_to_1_events.ctest_1_to_1_threads_SOURCES = test_1_to_1_threads.ctest_1_to_1_initmsg_connect_SOURCES = test_1_to_1_initmsg_connect.c## Specifying objects rules for "v6test"#test_basic_v6_SOURCES = test_basic.ctest_basic_v6_CFLAGS = ${V6FLAGS}test_sockopt_v6_SOURCES = test_sockopt.ctest_sockopt_v6_CFLAGS = ${V6FLAGS}test_fragments_v6_SOURCES = test_fragments.ctest_fragments_v6_CFLAGS = ${V6FLAGS}test_inaddr_any_v6_SOURCES = test_inaddr_any.ctest_inaddr_any_v6_CFLAGS = ${V6FLAGS}test_peeloff_v6_SOURCES = test_peeloff.ctest_peeloff_v6_CFLAGS = ${V6FLAGS}test_timetolive_v6_SOURCES = test_timetolive.ctest_timetolive_v6_CFLAGS = ${V6FLAGS}test_sctp_sendrecvmsg_v6_SOURCES = test_sctp_sendrecvmsg.ctest_sctp_sendrecvmsg_v6_CFLAGS = ${V6FLAGS}test_getname_v6_SOURCES = test_getname.ctest_getname_v6_CFLAGS = ${V6FLAGS}test_tcp_style_v6_SOURCES = test_tcp_style.ctest_tcp_style_v6_CFLAGS = ${V6FLAGS}all: all-am.SUFFIXES:.SUFFIXES: .c .lo .o .obj$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Makefile.vars $(top_srcdir)/Makefile.rules $(top_srcdir)/Makefile.dirs $(am__configure_deps)	@for dep in $?; do \	  case '$(am__configure_deps)' in \	    *$$dep*) \	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \		&& exit 0; \	      exit 1;; \	  esac; \	done; \	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  src/func_tests/Makefile'; \	cd $(top_srcdir) && \	  $(AUTOMAKE) --foreign  src/func_tests/MakefileMakefile: $(srcdir)/Makefile.in $(top_builddir)/config.status	@case '$?' in \	  *config.status*) \	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \	  *) \	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \	esac;$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh$(top_srcdir)/configure:  $(am__configure_deps)	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh$(ACLOCAL_M4):  $(am__aclocal_m4_deps)	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refreshclean-noinstPROGRAMS:	@list='$(noinst_PROGRAMS)'; for p in $$list; do \	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \	  echo " rm -f $$p $$f"; \	  rm -f $$p $$f ; \	donetest_1_to_1_accept_close$(EXEEXT): $(test_1_to_1_accept_close_OBJECTS) $(test_1_to_1_accept_close_DEPENDENCIES) 	@rm -f test_1_to_1_accept_close$(EXEEXT)	$(LINK) $(test_1_to_1_accept_close_LDFLAGS) $(test_1_to_1_accept_close_OBJECTS) $(test_1_to_1_accept_close_LDADD) $(LIBS)test_1_to_1_addrs$(EXEEXT): $(test_1_to_1_addrs_OBJECTS) $(test_1_to_1_addrs_DEPENDENCIES) 	@rm -f test_1_to_1_addrs$(EXEEXT)	$(LINK) $(test_1_to_1_addrs_LDFLAGS) $(test_1_to_1_addrs_OBJECTS) $(test_1_to_1_addrs_LDADD) $(LIBS)test_1_to_1_connect$(EXEEXT): $(test_1_to_1_connect_OBJECTS) $(test_1_to_1_connect_DEPENDENCIES) 	@rm -f test_1_to_1_connect$(EXEEXT)	$(LINK) $(test_1_to_1_connect_LDFLAGS) $(test_1_to_1_connect_OBJECTS) $(test_1_to_1_connect_LDADD) $(LIBS)test_1_to_1_connectx$(EXEEXT): $(test_1_to_1_connectx_OBJECTS) $(test_1_to_1_connectx_DEPENDENCIES) 	@rm -f test_1_to_1_connectx$(EXEEXT)	$(LINK) $(test_1_to_1_connectx_LDFLAGS) $(test_1_to_1_connectx_OBJECTS) $(test_1_to_1_connectx_LDADD) $(LIBS)test_1_to_1_events$(EXEEXT): $(test_1_to_1_events_OBJECTS) $(test_1_to_1_events_DEPENDENCIES) 	@rm -f test_1_to_1_events$(EXEEXT)	$(LINK) $(test_1_to_1_events_LDFLAGS) $(test_1_to_1_events_OBJECTS) $(test_1_to_1_events_LDADD) $(LIBS)test_1_to_1_initmsg_connect$(EXEEXT): $(test_1_to_1_initmsg_connect_OBJECTS) $(test_1_to_1_initmsg_connect_DEPENDENCIES) 	@rm -f test_1_to_1_initmsg_connect$(EXEEXT)	$(LINK) $(test_1_to_1_initmsg_connect_LDFLAGS) $(test_1_to_1_initmsg_connect_OBJECTS) $(test_1_to_1_initmsg_connect_LDADD) $(LIBS)test_1_to_1_nonblock$(EXEEXT): $(test_1_to_1_nonblock_OBJECTS) $(test_1_to_1_nonblock_DEPENDENCIES) 	@rm -f test_1_to_1_nonblock$(EXEEXT)	$(LINK) $(test_1_to_1_nonblock_LDFLAGS) $(test_1_to_1_nonblock_OBJECTS) $(test_1_to_1_nonblock_LDADD) $(LIBS)test_1_to_1_recvfrom$(EXEEXT): $(test_1_to_1_recvfrom_OBJECTS) $(test_1_to_1_recvfrom_DEPENDENCIES) 	@rm -f test_1_to_1_recvfrom$(EXEEXT)	$(LINK) $(test_1_to_1_recvfrom_LDFLAGS) $(test_1_to_1_recvfrom_OBJECTS) $(test_1_to_1_recvfrom_LDADD) $(LIBS)test_1_to_1_recvmsg$(EXEEXT): $(test_1_to_1_recvmsg_OBJECTS) $(test_1_to_1_recvmsg_DEPENDENCIES) 	@rm -f test_1_to_1_recvmsg$(EXEEXT)	$(LINK) $(test_1_to_1_recvmsg_LDFLAGS) $(test_1_to_1_recvmsg_OBJECTS) $(test_1_to_1_recvmsg_LDADD) $(LIBS)test_1_to_1_rtoinfo$(EXEEXT): $(test_1_to_1_rtoinfo_OBJECTS) $(test_1_to_1_rtoinfo_DEPENDENCIES) 	@rm -f test_1_to_1_rtoinfo$(EXEEXT)	$(LINK) $(test_1_to_1_rtoinfo_LDFLAGS) $(test_1_to_1_rtoinfo_OBJECTS) $(test_1_to_1_rtoinfo_LDADD) $(LIBS)test_1_to_1_send$(EXEEXT): $(test_1_to_1_send_OBJECTS) $(test_1_to_1_send_DEPENDENCIES) 	@rm -f test_1_to_1_send$(EXEEXT)	$(LINK) $(test_1_to_1_send_LDFLAGS) $(test_1_to_1_send_OBJECTS) $(test_1_to_1_send_LDADD) $(LIBS)

⌨️ 快捷键说明

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