makefile.am

来自「一个 http 服务器的框架实现」· AM 代码 · 共 96 行

AM
96
字号
SUBDIRS  = .INCLUDES = -I$(top_srcdir)/src/includelib_LTLIBRARIES = \  libmicrohttpd.lalibmicrohttpd_la_LDFLAGS = \  -export-dynamic -version-info 0:1:0 libmicrohttpd_la_SOURCES = \  connection.c connection.h \  daemon.c  \  internal.c internal.h \  memorypool.c memorypool.h \  plibc.h \  response.c response.h # example programsnoinst_PROGRAMS = minimal_example fileserver_exampleminimal_example_SOURCES = \ minimal_example.c minimal_example_LDADD = \ $(top_builddir)/src/daemon/libmicrohttpd.la fileserver_example_SOURCES = \ fileserver_example.c fileserver_example_LDADD = \ $(top_builddir)/src/daemon/libmicrohttpd.la # No curl, no testcasesif HAVE_CURLcheck_PROGRAMS = \  daemontest \  daemontest_get \  daemontest_post \  daemontest_put \  daemontest_get11 \  daemontest_post11 \  daemontest_put11 \  daemontest_long_headerTESTS = $(check_PROGRAMS)daemontest_SOURCES = \  daemontest.cdaemontest_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la daemontest_get_SOURCES = \  daemontest_get.cdaemontest_get_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_post_SOURCES = \  daemontest_post.cdaemontest_post_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_put_SOURCES = \  daemontest_put.cdaemontest_put_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_get11_SOURCES = \  daemontest_get.cdaemontest_get11_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_post11_SOURCES = \  daemontest_post.cdaemontest_post11_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_put11_SOURCES = \  daemontest_put.cdaemontest_put11_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ daemontest_long_header_SOURCES = \  daemontest_long_header.cdaemontest_long_header_LDADD = \  $(top_builddir)/src/daemon/libmicrohttpd.la \  @LIBCURL@ endif

⌨️ 快捷键说明

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