7a1054fa5f
For a long time `nix repl` has supported displaying documentation set on builtins, however, it has long been convention to use Markdown comments on Nix functions themselves for documentation. This exposes that information to `nix repl` users in a nice and formatted way. NixOS/rfcs#145 doc-comments are primarily what this feature is intended to consume, however, support for lambda documentation in the repl is experimental. We do our best effort to support the RFC here. These changes are based on [the nix-doc library](https://github.com/lf-/nix-doc) and are licensed under the terms described in the relevant source files. Change-Id: Ic6fe947d39a22540705d890737e336c4720b0a22
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
AR = @AR@
|
|
BDW_GC_LIBS = @BDW_GC_LIBS@
|
|
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
|
BUILD_SHARED_LIBS = @BUILD_SHARED_LIBS@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@
|
|
CXXLTO = @CXXLTO@
|
|
EDITLINE_LIBS = @EDITLINE_LIBS@
|
|
ENABLE_S3 = @ENABLE_S3@
|
|
GTEST_LIBS = @GTEST_LIBS@
|
|
HAVE_LIBCPUID = @HAVE_LIBCPUID@
|
|
HAVE_SECCOMP = @HAVE_SECCOMP@
|
|
HOST_OS = @host_os@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBARCHIVE_LIBS = @LIBARCHIVE_LIBS@
|
|
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
|
|
LIBCURL_LIBS = @LIBCURL_LIBS@
|
|
LIBSECCOMP_LIBS = @LIBSECCOMP_LIBS@
|
|
LOWDOWN_LIBS = @LOWDOWN_LIBS@
|
|
NIXDOC_LIBS = -lnix_doc
|
|
OPENSSL_LIBS = @OPENSSL_LIBS@
|
|
PACKAGE_NAME = @PACKAGE_NAME@
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
RAPIDCHECK_HEADERS = @RAPIDCHECK_HEADERS@
|
|
SHELL = @bash@
|
|
SODIUM_LIBS = @SODIUM_LIBS@
|
|
SQLITE3_LIBS = @SQLITE3_LIBS@
|
|
bash = @bash@
|
|
bindir = @bindir@
|
|
datadir = @datadir@
|
|
datarootdir = @datarootdir@
|
|
doc_generate = @doc_generate@
|
|
docdir = @docdir@
|
|
embedded_sandbox_shell = @embedded_sandbox_shell@
|
|
exec_prefix = @exec_prefix@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
libexecdir = @libexecdir@
|
|
localstatedir = @localstatedir@
|
|
lsof = @lsof@
|
|
mandir = @mandir@
|
|
pkglibdir = $(libdir)/$(PACKAGE_NAME)
|
|
prefix = @prefix@
|
|
sandbox_shell = @sandbox_shell@
|
|
storedir = @storedir@
|
|
sysconfdir = @sysconfdir@
|
|
system = @system@
|
|
ENABLE_BUILD = @ENABLE_BUILD@
|
|
ENABLE_TESTS = @ENABLE_TESTS@
|
|
internal_api_docs = @internal_api_docs@
|