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

📄 makefile.am

📁 一个 http 服务器的框架实现
💻 AM
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -