/civetweb-2.7.6/ |
D | Makefile | 224 @echo "make install install on the system" 226 @echo "make install-headers install headers" 228 @echo "make install-lib install the static library" 230 @echo "make install-slib install the shared library" 255 @echo " PREFIX=/usr/local sets the install directory" 280 install: $(HTMLDIR)/index.html $(SYSCONFDIR)/civetweb.conf target 281 install -d -m 755 "$(DOCDIR)" 282 install -m 644 *.md "$(DOCDIR)" 283 install -d -m 755 "$(BINDIR)" 284 install -m 755 $(CPROG) "$(BINDIR)/" [all …]
|
D | Makefile.osx | 31 install -d -m 755 $(CONTENTS_DIR) $(RESOURCES_DIR) $(OSXBIN_DIR) 32 install -m 644 resources/Info.plist $(CONTENTS_DIR)/ 33 install -m 644 resources/civetweb_*.png resources/civetweb.icns $(RESOURCES_DIR)/ 34 install -m 644 resources/itworks.html $(OSXBIN_DIR)/index.html 35 install -m 644 resources/civetweb_64x64.png $(OSXBIN_DIR)/ 36 install -m 755 $(CPROG) $(OSXBIN_DIR)/$(PACKAGE) 37 install -m 644 docs/Installing.md $(DMG_DIR)/Installing.txt 38 install -m 644 LICENSE.md $(DMG_DIR)/License.txt
|
D | build.cmd | 23 @set "install_path=%output_path%\install" 125 install 276 :install - Installs the built files label 283 @call :log 0 "Need CMake to install the built files" 287 @set output=%temp%\install-%iso8601%.log 295 @call :log 0 "Failed to install the files" 573 call :log 0 "Failed to install cmake" 702 :: %1 - [string] name of the project to install 719 call :log 0 "Please install it from the Microsoft Download center" 731 call :log 0 "You must run %~nx0 in elevated mode to install '%name%'" [all …]
|
D | .travis.yml | 35 install: 38 pip install --user --upgrade pip; 39 pip install --user cpp-coveralls; 62 …- if [[ "${BUILD_TYPE}" == "OSX_OPENSSL_1_1" ]]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install opens… 132 install: 133 - ./conan/travis/install.sh 147 install: 148 - ./conan/travis/install.sh
|
D | appveyor.yml | 281 install: 357 - set "install_path=%output_path%\install" 417 - set "install_path=%output_path%\install" 433 - if "%build_type%"=="Release" (echo "Install directory:") 492 install: 494 - pip.exe install conan conan_package_tools
|
D | RELEASE_NOTES.md | 320 - Removed windows install package build. 390 - Added install for windows distribution 394 - Made doc root and ports configurable during the make install. 395 - Updated Linux Install 397 - Improved install scheme with welcome web page 425 + Supports build, install and clean rules.
|
D | build | 56 stderr "Please install it with your package manager" 101 local install_dir=${output_dir}/install 122 # Do the install
|
D | README.md | 76 …](https://github.com/civetweb/civetweb/blob/master/docs/Installing.md) - Install Guide (for end us… 136 This project is very easy to install and use.
|
/civetweb-2.7.6/src/third_party/lua-5.1.5/ |
D | Makefile | 2 # see INSTALL for installation instructions 10 # Where to install. The installation starts in the src and doc directories, 23 # How to install. If your install program does not support "-p", then you 25 INSTALL= install -p macro 26 INSTALL_EXEC= $(INSTALL) -m 0755 27 INSTALL_DATA= $(INSTALL) -m 0644 29 # If you don't have install you can use cp instead. 30 # INSTALL= cp -p 31 # INSTALL_EXEC= $(INSTALL) 32 # INSTALL_DATA= $(INSTALL) [all …]
|
D | INSTALL | 1 INSTALL for Lua 5.1 24 Once you have built Lua, you may want to install it in an official 25 place in your system. In this case, do "make install". The official 26 place and the way to install files are defined in Makefile. You must 27 have the right permissions to install files. 29 If you want to build and install Lua in one step, do "make xxx install", 32 If you want to install Lua locally, then do "make local". This will 33 create directories bin, include, lib, man, and install Lua there as 47 If you want to install Lua locally, but in some other directory, do 48 "make install INSTALL_TOP=xxx", where xxx is your chosen directory. [all …]
|
D | README | 3 See INSTALL for installation instructions. 28 do "make" with a suitable target. See INSTALL for detailed instructions.
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/ |
D | Makefile | 9 # Where to install. The installation starts in the src and doc directories, 21 # How to install. If your install program does not support "-p", then 23 INSTALL= install -p macro 24 INSTALL_EXEC= $(INSTALL) -m 0755 25 INSTALL_DATA= $(INSTALL) -m 0644 27 # If you don't have "install" you can use "cp" instead. 28 # INSTALL= cp -p 29 # INSTALL_EXEC= $(INSTALL) 30 # INSTALL_DATA= $(INSTALL) 41 # What to install. [all …]
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/ |
D | Makefile | 9 # Where to install. The installation starts in the src and doc directories, 21 # How to install. If your install program does not support "-p", then 23 INSTALL= install -p macro 24 INSTALL_EXEC= $(INSTALL) -m 0755 25 INSTALL_DATA= $(INSTALL) -m 0644 27 # If you don't have "install" you can use "cp" instead. 28 # INSTALL= cp -p 29 # INSTALL_EXEC= $(INSTALL) 30 # INSTALL_DATA= $(INSTALL) 41 # What to install. [all …]
|
/civetweb-2.7.6/docs/ |
D | Building.md | 56 make install 58 Install on the system, Linux only. 99 | `HTMLDIR=/path` | place to install initial web pages | 104 | `PREFIX=/usr/local` | sets the install directory | 113 To change the target destination pass the `PREFIX` option to the command `make install` (not `make … 117 $ make -n install PREFIX=/opt/civetweb 119 …` option (it does not make any changes): You can see where `make install` would install. Example o… 122 $ make -n install PREFIX=/opt/civetweb 123 install -d -m 755 "/opt/civetweb/share/doc/civetweb" 124 install -m 644 resources/itworks.html /opt/civetweb/share/doc/civetweb/index.html [all …]
|
D | Installing.md | 1 Civetweb Install Guide 14 …32 Bit Version: Install the [Redistributable for Visual Studio 2010](http://www.microsoft.com/en-u… 15 …64 Bit Version: Install the [Redistributable for Visual Studio 2015](http://www.microsoft.com/en-u… 37 5. make install
|
D | OpenSSL.md | 12 - Install OpenSSL on your system. There are OpenSSL install packages for all
|
/civetweb-2.7.6/src/third_party/lua-5.3.5/doc/ |
D | readme.html | 39 <A HREF="#install">installation</A> 77 <H2><A NAME="install">Installing Lua</A></H2> 147 Once you have built Lua, you may want to install it in an official 148 place in your system. In this case, do "<KBD>make install</KBD>". The official 149 place and the way to install files are defined in the <TT>Makefile</TT>. You'll 150 probably need the right permissions to install files. 153 To build and install Lua in one step, do "<KBD>make xxx install</KBD>", 157 To install Lua locally, do "<KBD>make local</KBD>". 158 This will create a directory <TT>install</TT> with subdirectories 160 and install Lua as listed below. [all …]
|
/civetweb-2.7.6/src/third_party/lua-5.2.4/doc/ |
D | readme.html | 40 <A HREF="#install">installation</A> 78 <H2><A NAME="install">Installing Lua</A></H2> 150 Once you have built Lua, you may want to install it in an official 151 place in your system. In this case, do "<KBD>make install</KBD>". The official 152 place and the way to install files are defined in the <TT>Makefile</TT>. You'll 153 probably need the right permissions to install files. 156 To build and install Lua in one step, do "<KBD>make xxx install</KBD>", 160 To install Lua locally, do "<KBD>make local</KBD>". 161 This will create a directory <TT>install</TT> with subdirectories 163 and install Lua as listed below. [all …]
|
/civetweb-2.7.6/conan/travis/ |
D | install.sh | 8 brew install pyenv-virtualenv 9 brew install cmake || true 15 pyenv install 3.7.1 21 pip install conan==1.10.2 22 pip install conan_package_tools
|
/civetweb-2.7.6/src/ |
D | CMakeLists.txt | 19 install( 27 install(FILES 100 INSTALL_COMMAND make install "INSTALL_TOP=<INSTALL_DIR>" 257 install( 284 install( 312 install( 320 install(FILES
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/ |
D | Makefile.sharedlibrary | 2 # Example of how to build and install locally as a shared library 7 # $ sudo make -f Makefile.sharedlibrary install 55 .PHONY: install 56 install: libduktape.so.$(REAL_VERSION) libduktaped.so.$(REAL_VERSION)
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/ |
D | Makefile.sharedlibrary | 2 # Example of how to build and install locally as a shared library 7 # $ sudo make -f Makefile.sharedlibrary install 55 .PHONY: install 56 install: libduktape.so.$(REAL_VERSION) libduktaped.so.$(REAL_VERSION)
|
/civetweb-2.7.6/ci/travis/ |
D | setup_lua.sh | 34 # mv built lua install to target Lua dir 37 mv $SCRIPT_DIR/$LUA_BASE/install $LUA_DIR 55 make install
|
/civetweb-2.7.6/distribution/arch/ |
D | PKGBUILD.git.example | 33 make install PREFIX="$pkgdir/usr" SYSCONFDIR="$pkgdir/etc/local/$_pkgname" 35 …install -Dm644 "$srcdir/$_pkgname/distribution/arch/$_pkgname.service" "$pkgdir/usr/lib/systemd/sy…
|
D | civetweb.service | 8 [Install] section
|