Searched +full:make +full:- +full:docs (Results 1 – 25 of 1170) sorted by relevance
12345678910>>...47
| /external/python/cpython2/Doc/ |
| D | Makefile | 8 SPHINXBUILD = sphinx-build 13 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_elements.papersize=$(PAPER) \ 17 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ 18 autobuild-dev autobuild-stable 21 @echo "Please use \`make <target>' where <target> is one of" 23 @echo " html to make standalone HTML files" 25 @echo " htmlhelp to make HTML files and a HTML help project" 26 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" 27 @echo " text to make plain text files" 28 @echo " epub to make EPUB files" [all …]
|
| D | README.txt | 6 available at <https://docs.python.org/dev/download.html>. 10 developers guide <https://docs.python.org/devguide/documenting.html>. 13 Building the docs 16 You need to have Sphinx <http://sphinx-doc.org/> installed; it is the toolset 17 used to build the docs. It is not included in this tree, but maintained 21 Using make 22 ---------- 27 make html 32 ``make.bat`` file. 37 make html PYTHON=python3 [all …]
|
| /external/python/cpython3/Doc/ |
| D | Makefile | 9 SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build 10 SPHINXLINT = PATH=$(VENVDIR)/bin:$$PATH sphinx-lint 17 SPHINXERRORHANDLING = -W 20 PAPEROPT_a4 = -D latex_elements.papersize=a4paper 21 PAPEROPT_letter = -D latex_elements.papersize=letterpaper 23 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) -j $(JOBS) \ 27 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \ 28 autobuild-dev autobuild-stable venv 31 @echo "Please use \`make <target>' where <target> is one of" 34 @echo " html to make standalone HTML files" [all …]
|
| D | README.rst | 6 available <https://docs.python.org/dev/download.html>`_. 14 Building the docs 23 * `python-docs-theme <https://pypi.org/project/python-docs-theme/>`_ 28 Using make 29 ---------- 34 make venv 35 make html 43 the Makefile will look for instances of ``sphinx-build`` and ``blurb`` 48 ``make.bat`` file. If you need to specify the Python interpreter to use, 51 Available make targets are: [all …]
|
| /external/oss-fuzz/projects/dlplibs/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 18 tar -xJf $SRC/zlib-1.2.11.tar.xz 19 pushd zlib-1.2.11 20 ./configure --static 21 make -j$(nproc) 22 export ZLIB_CFLAGS="-I$(pwd)" 23 export ZLIB_LIBS="-L$(pwd) -lz" 26 tar -xzf $SRC/lcms2-2.8.tar.gz 27 pushd lcms2-2.8 [all …]
|
| /external/curl/ |
| D | Makefile.am | 12 # are also available at https://curl.se/docs/copyright.html. 21 # SPDX-License-Identifier: curl 27 ACLOCAL_AMFLAGS = -I m4 32 CMake/curl-config.cmake.in \ 57 projects/build-openssl.bat \ 58 projects/build-wolfssl.bat \ 77 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \ 78 RELEASE-NOTES buildconf libcurl.pc.in $(CMAKE_DIST) $(VC_DIST) \ 87 bin_SCRIPTS = curl-config 89 SUBDIRS = lib docs src scripts subdir [all …]
|
| /external/python/pyasn1/ |
| D | .travis.yml | 5 - os: linux 8 - os: linux 11 - os: linux 14 - os: linux 17 - os: linux 20 - os: linux 23 - os: linux 26 - os: linux 30 - os: linux 33 - os: linux [all …]
|
| /external/libevent/ |
| D | doxygen.am | 2 # unless '--enable-doxygen-doc' is configured. 4 # make # 'make doxygen' would be auto executed 5 # make doxygen # generating doxygen documentation 6 # make doxygen-doc # same as 'make doxygen' 7 # make clean # clean docs generated by doxygen 8 # make install # install doxygen documentation 9 # make uninstall # uninstall doxygen documentation 16 # Use 'make clean' to clean docs generated by doxygen. 17 clean-local: 18 -rm -rf $(DX_CLEANFILES) [all …]
|
| /external/selinux/secilc/ |
| D | README | 19 Run "make" with one of the following targets: 21 make 24 make test 27 make install 30 make clean 33 make man 36 make bare 45 Use the '--help' option for more details. 50 There is a github markdown CIL Reference Guide in the docs directory. To 51 view the table of contents, see README.md in the docs directory. [all …]
|
| /external/lz4/.circleci/ |
| D | config.yml | 17 shell: /bin/bash --login 19 …y don't or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-… 21 CIRCLE_ARTIFACTS: /tmp/circleci-artifacts 22 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results 23 …# In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packag… 24 # In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images. 26 # We have selected a pre-built image that mirrors the build environment we use on 29 # VM instead of a container) see https://circleci.com/docs/2.0/executor-types/ 30 # To see the list of pre-built images that CircleCI provides for most common languages see 31 # https://circleci.com/docs/2.0/circleci-images/ [all …]
|
| /external/antlr/runtime/JavaScript/build/ |
| D | build.xml | 15 …<taskdef file="${third.dir}/antcontrib.properties" classpath="${third.dir}/ant-contrib-1.0b3.jar" … 17 <!-- ******* --> 18 <!-- LIBRARY --> 19 <!-- ******* --> 21 <target name="build" depends="-init" description="Build ANTLR JavaScript runtime library."> 22 <antcall target="-make-debug" /> 23 <antcall target="-make-min" /> 24 <!--<antcall target="-make-docs" />--> 25 <antcall target="-del-build" /> 28 <!-- Make uncompressed JS runtime files --> [all …]
|
| /external/freetype/ |
| D | configure | 3 # Copyright (C) 2002-2023 by 16 rm -f config.mk builds/unix/unix-def.mk builds/unix/unix-cc.mk 20 if test "x$MAKE" = x; then 21 if test "x`make -v 2>/dev/null | sed -n -e '/GNU/p' -e '/makepp/p'`" = x; then 22 MAKE=gmake 24 MAKE=make 28 MAKE=$GNUMAKE 31 if test "x`$MAKE -v 2>/dev/null | sed -n -e '/GNU/p' -e '/makepp/p'`" = x; then 32 echo "GNU make (>= 3.81) or makepp (>= 2.0) is required to build FreeType2." >&2 35 echo " MAKE=<GNU make command name> $0" >&2 [all …]
|
| /external/rnnoise/ |
| D | Makefile.am | 1 ACLOCAL_AMFLAGS = -I m4 3 AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) 31 librnnoise_la_LDFLAGS = -no-undefined \ 32 -version-info @OP_LT_CURRENT@:@OP_LT_REVISION@:@OP_LT_AGE@ 45 $(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all 49 rnnoise-uninstalled.pc.in \ 53 # Targets to build and install just the library without the docs 54 librnnoise install-librnnoise: NO_DOXYGEN = 1 57 install-rnnoise: install 59 # Or just the docs [all …]
|
| /external/llvm/docs/ |
| D | README.txt | 8 system to create HTML pages which are hosted on <http://llvm.org/docs/> and 12 Sphinx <http://sphinx-doc.org/> and then do: 14 cd <build-dir> 15 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_HTML=true <src-dir> 16 make -j3 docs-llvm-html 17 $BROWSER <build-dir>/docs//html/index.html 20 `docs/Foo.rst` <-> `<build-dir>/docs//html/Foo.html` <-> `http://llvm.org/docs/Foo.html`. 33 directory `<build-dir>/docs/man/`. 35 cd <build-dir> 36 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_MAN=true <src-dir> [all …]
|
| /external/cronet/third_party/apache-portable-runtime/src/ |
| D | apr.spec | 11 Source0: http://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2 12 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot 33 %setup -q 39 --prefix=/usr \ 40 --includedir=%{_includedir}/apr-%{aprver} \ 41 --with-installbuilddir=%{_libdir}/apr/build-%{aprver} \ 42 --with-devrandom=/dev/urandom \ 44 make %{?_smp_mflags} && make dox 47 # Run non-interactive tests 49 make %{?_smp_mflags} all CFLAGS=-fno-strict-aliasing [all …]
|
| /external/cronet/third_party/apache-portable-runtime/src/build/rpm/ |
| D | apr.spec.in | 11 Source0: http://www.apache.org/dist/apr/%{name}-%{version}.tar.bz2 12 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot 33 %setup -q 39 --prefix=/usr \ 40 --includedir=%{_includedir}/apr-%{aprver} \ 41 --with-installbuilddir=%{_libdir}/apr/build-%{aprver} \ 42 --with-devrandom=/dev/urandom \ 44 make %{?_smp_mflags} && make dox 47 # Run non-interactive tests 49 make %{?_smp_mflags} all CFLAGS=-fno-strict-aliasing [all …]
|
| /external/trusty/arm-trusted-firmware/docs/getting_started/ |
| D | docs-build.rst | 5 `Sphinx`_ tool to build and package the plain-text documents into HTML-formatted 14 https://www.trustedfirmware.org/docs/tf-a, if you want to view a rendered 18 ------------- 20 For building a local copy of the |TF-A| documentation you will need: 22 - Python 3 (3.8 or later) 23 - PlantUML (1.2017.15 or later) 24 - `Poetry`_ (Python dependency manager) 25 - Optionally, the `Dia`_ application can be installed if you need to edit 34 sudo apt install python3 python3-pip plantuml [dia] 35 curl -sSL https://install.python-poetry.org | python3 - [all …]
|
| /external/OpenCSD/decoder/build/linux/ |
| D | makefile | 30 # OpenCSD - master makefile for libraries and tests 36 # Set project root - relative to build makefile 74 CFLAGS += $(CPPFLAGS) -c -Wall -DLINUX -Wno-switch -Wlogical-op -fPIC 75 CXXFLAGS += $(CPPFLAGS) -c -Wall -DLINUX -Wno-switch -Wlogical-op -fPIC -std=c++11 76 LDFLAGS += -Wl,-z,defs 81 CFLAGS += -g -O0 -DDEBUG 82 CXXFLAGS += -g -O0 -DDEBUG 85 CFLAGS += -O2 -DNDEBUG 86 CXXFLAGS += -O2 -DNDEBUG 96 # target directories - fixed for default packaging build [all …]
|
| /external/libvpx/build/make/ |
| D | Makefile | 4 ## Use of this source code is governed by a BSD-style license 18 $(MAKE) --no-print-directory target=$$t $(MAKECMDGOALS) || exit $$?;\ 25 test-no-data-check: .DEFAULT 28 exampletest-no-data-check utiltest-no-data-check: .DEFAULT 37 md5sum := $(if $(filter %openssl,$(md5sum)),$(md5sum) dgst -md5,$(md5sum)) 39 TGT_CC:=$(word 3, $(subst -, ,$(TOOLCHAIN))) 42 $(MAKE) --no-print-directory target=$$t $(MAKECMDGOALS) || exit $$?;\ 45 @if [ -d "$(DIST_DIR)/src" ]; then \ 46 mkdir -p "$(DIST_DIR)/build"; \ 50 $(if $(filter vs%,$(TGT_CC)),make NO_LAUNCH_DEVENV=1;) \ [all …]
|
| /external/blktrace/ |
| D | Makefile | 2 CFLAGS = -Wall -O2 -g -W 3 ALL_CFLAGS = $(CFLAGS) -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 5 LIBS = -lpthread 14 $(MAKE) -C btt 17 $(MAKE) -C iowatcher 20 $(MAKE) -C btreplay 23 $(MAKE) -C btreplay 26 $(CC) -o $*.o -c $(ALL_CFLAGS) $< 29 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) 32 $(CC) $(ALL_CFLAGS) -o $@ $(filter %.o,$^) $(LIBS) [all …]
|
| /external/skia/site/docs/dev/contrib/ |
| D | bazel.md | 2 --- 6 --- 15 `$SKIA_ROOT/docs/examples/Arc.cpp`, we would say `//docs/examples/Arc.cpp`. 18 The Bazel docs are quite good. Suggested reading order if you are new to Bazel: 19 - [Getting Started with Bazel and C++](https://bazel.build/tutorials/cpp) 20 - [WORKSPACE.bazel and external deps](https://bazel.build/docs/external) 21 - [Targets and Labels](https://bazel.build/concepts/labels) 22 - [Understanding a build](https://bazel.build/docs/build) 23 - [Configuration with .bazelrc files](https://bazel.build/docs/bazelrc) 25 Googlers, check out [go/bazel-bites](http://go/bazel-bites) for more tips. [all …]
|
| /external/freetype/docs/ |
| D | release | 2 ---------------------------- 12 . docs/CHANGES: Document differences to last release. 16 . docs/VERSIONS.TXT: Document changed `version_info`. 24 make copy_submodule 28 make distclean && make devel && make 29 make distclean && make devel && make multi 30 make distclean && make devel CC=g++ && make CC=g++ ANSIFLAGS="" 31 make distclean && make devel CC=g++ && make multi CC=g++ ANSIFLAGS="" 34 make distclean && ./configure CC=g++ && make ANSIFLAGS="" 36 to test compilation with both gcc and g++ (you might also add the `-j` [all …]
|
| /external/AFLplusplus/ |
| D | CONTRIBUTING.md | 10 make code-format 17 ./.custom-format.py -i file-that-you-have-created.c 24 Makefiles/GNUmakefile (or your patches to our pre-existing Makefiles) to be as 27 ## How to contribute to the docs 29 We welcome contributions to our docs. 34 * [docs/](docs/) (this is where you can find most of our docs content) 40 When working on the docs, please keep the following guidelines in mind: 47 * Don't: fuzzing-network-service.md 48 * Use a maximum of 80 characters per line to make reading in a console easier. 49 * Make all pull requests against `dev`, see [all …]
|
| /external/python/typing/docs/ |
| D | README.rst | 4 Reading the docs 10 Building the docs 18 * `python-docs-theme <https://pypi.org/project/python-docs-theme/>`_ 23 Using make 24 ---------- 28 make venv 35 make html 41 Available make targets are:
|
| /external/curl/.github/workflows/ |
| D | distcheck.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 14 - master 17 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} 18 cancel-in-progress: true 23 maketgz-and-verify-in-tree: 24 runs-on: ubuntu-latest 25 timeout-minutes: 30 27 - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 [all …]
|
12345678910>>...47