makefile.am

来自「SCTP 协议实现源代码」· AM 代码 · 共 40 行

AM
40
字号
# Include these two in all the Makefile.am's!!!include $(top_srcdir)/Makefile.varsinclude $(top_srcdir)/Makefile.rulesinclude $(top_srcdir)/Makefile.dirs# General compilation flagsINCLUDES = -I. -I$(top_srcdir)/src/include -I$(top_srcdir)/src/testlib AM_CFLAGS = -g -Wall -Wstrict-prototypes -Wimplicit-function-declarationAM_LDFLAGS = LDADD = $(top_builddir)/src/lib/libsctp.la \	$(top_builddir)/src/testlib/libsctputil.la# programs to be installed with the distriubutionbin_PROGRAMS = sctp_darn sctp_test# Test programs and libraries to buildnoinst_PROGRAMS = bindx_test nagle_snd nagle_rcv myftp sctp_xconnect \	peel_server peel_client sctp_test$(top_builddir)/src/lib/libsctp.la:	make -C $(top_builddir)/src/lib libsctp.la$(top_builddir)/src/testlib/libsctputil.la:	make -C $(top_builddir)/src/testlib libsctputil.la# Specifying the sourcesbindx_test_SOURCES = bindx_test.csctp_darn_SOURCES = sctp_darn.c sctp_darn.hsctp_test_SOURCES = sctp_test.cnagle_rcv_SOURCES = nagle_rcv.c nagle_snd_SOURCES = nagle_snd.c myftp_SOURCES = myftp.csctp_xconnect_SOURCES = sctp_xconnect.cpeel_server_SOURCES = peel_server.cpeel_client_SOURCES = peel_client.c# Tutorialspkgdoc_DATA = sctp_darn.c sctp_darn.h sctp_test.c

⌨️ 快捷键说明

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