pax_global_header 0000666 0000000 0000000 00000000064 14666340476 0014532 g ustar 00root root 0000000 0000000 52 comment=821bc0ba25313de3db14cab135f8c0eea1061deb
luv-0.5.14/ 0000775 0000000 0000000 00000000000 14666340476 0012427 5 ustar 00root root 0000000 0000000 luv-0.5.14/.gitattributes 0000664 0000000 0000000 00000000045 14666340476 0015321 0 ustar 00root root 0000000 0000000 src/c/vendor/configure/* text eol=lf
luv-0.5.14/.github/ 0000775 0000000 0000000 00000000000 14666340476 0013767 5 ustar 00root root 0000000 0000000 luv-0.5.14/.github/FUNDING.yml 0000664 0000000 0000000 00000000020 14666340476 0015574 0 ustar 00root root 0000000 0000000 github: aantron
luv-0.5.14/.github/workflows/ 0000775 0000000 0000000 00000000000 14666340476 0016024 5 ustar 00root root 0000000 0000000 luv-0.5.14/.github/workflows/ci.yml 0000664 0000000 0000000 00000004500 14666340476 0017141 0 ustar 00root root 0000000 0000000 name: ci
on: [push, pull_request]
jobs:
opam:
strategy:
matrix:
os:
- ubuntu-latest
ocaml:
- 5.1.x
- 4.14.x
- 4.03.x
include:
- os: macos-latest
ocaml: 4.14.x
- os: windows-latest
ocaml: 4.14.x
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ocaml/setup-ocaml@v2
if: runner.os != 'Windows'
with:
ocaml-compiler: ${{ matrix.ocaml }}
- uses: ocaml/setup-ocaml@v2
if: runner.os == 'Windows'
with:
ocaml-compiler: ${{ matrix.ocaml }}
opam-repositories: |
opam-repository-mingw: https://github.com/ocaml-opam/opam-repository-mingw.git#sunset
default: https://github.com/ocaml/opam-repository.git
- run: opam install -y --deps-only .
- run: opam exec -- dune build -p luv
old-libuv:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.14.x
- run: opam install -y --deps-only .
- run: git clone https://github.com/libuv/libuv.git
working-directory: ..
- run: |
git checkout v1.3.0
./autogen.sh
sh configure
make
sh libtool --mode install cp libuv.la $(pwd)
working-directory: ../libuv
- run: opam exec -- dune build -p luv
env:
LUV_USE_SYSTEM_LIBUV: yes
C_INCLUDE_PATH: ${{ github.workspace }}/../libuv/include
LIBRARY_PATH: ${{ github.workspace }}/../libuv
# esy builds are broken due to an upstream bug that is not worth working
# around in luv, but should be fixed in esy:
#
# https://github.com/esy/esy/issues/1440
#
# esy:
# strategy:
# matrix:
# os:
# - ubuntu-latest
# - macos-latest
# - windows-latest
# fail-fast: false
# runs-on: ${{ matrix.os }}
#
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - run: npm install esy
# - run: npx esy install
# - run: npx esy build
luv-0.5.14/.gitignore 0000664 0000000 0000000 00000000215 14666340476 0014415 0 ustar 00root root 0000000 0000000 _build/
.merlin
*.install
_opam/
scratch/
echo-pipe
luv-*/
*.tar
*.gz
_release/
_esy/
*esy.lock/
node_modules/
libuv-scratch/
.vscode/
*.swp
luv-0.5.14/.gitmodules 0000664 0000000 0000000 00000000146 14666340476 0014605 0 ustar 00root root 0000000 0000000 [submodule "src/c/vendor/libuv"]
path = src/c/vendor/libuv
url = https://github.com/libuv/libuv.git
luv-0.5.14/LICENSE.md 0000664 0000000 0000000 00000002045 14666340476 0014034 0 ustar 00root root 0000000 0000000 Copyright (c) 2018-2023 Anton Bachin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
luv-0.5.14/Makefile 0000664 0000000 0000000 00000016261 14666340476 0014075 0 ustar 00root root 0000000 0000000 .PHONY : build
build :
dune build -p luv
.PHONY : watch
watch :
dune build -p luv -w
.PHONY : test
test :
dune runtest --no-buffer --force
.PHONY : test-watch
test-watch :
dune runtest --no-buffer --force --watch
.PHONY : promote
promote :
dune promote
.PHONY : examples
examples :
dune build \
example/hello_world.exe \
example/delay.exe \
example/print_using_file.exe \
example/print_using_pipe.exe \
example/print_using_tty.exe \
example/idle.exe \
example/cat.exe \
example/onchange.exe \
example/tcp_echo_server.exe \
example/tcp_hello_world.exe \
example/udp_echo_server.exe \
example/udp_hello_world.exe \
example/host.exe \
example/http_get.exe \
example/readme.exe \
example/ifconfig.exe \
example/threads.exe \
example/thread_pool.exe \
example/mutex.exe \
example/progress.exe \
example/spawn.exe \
example/stdout.exe \
example/pipe.exe \
example/pipe_echo_server.exe \
example/pipe_hello_world.exe \
example/send_signal.exe \
example/sigint.exe
_build/default/example/hello_world.exe
_build/default/example/delay.exe
_build/default/example/print_using_file.exe
_build/default/example/print_using_pipe.exe
bash -c "[ A$$TRAVIS == Atrue ]" || \
_build/default/example/print_using_tty.exe
_build/default/example/idle.exe
_build/default/example/cat.exe LICENSE.md
(_build/default/example/onchange.exe false LICENSE.md || true) & \
(sleep 1; touch LICENSE.md)
_build/default/example/tcp_echo_server.exe & \
(_build/default/example/tcp_hello_world.exe; \
sleep 1; killall tcp_echo_server.exe)
_build/default/example/udp_echo_server.exe & \
(_build/default/example/udp_hello_world.exe; \
sleep 1; killall udp_echo_server.exe)
_build/default/example/host.exe localhost
_build/default/example/http_get.exe google.com /
_build/default/example/readme.exe || true
_build/default/example/ifconfig.exe
_build/default/example/threads.exe
_build/default/example/thread_pool.exe
_build/default/example/mutex.exe
_build/default/example/progress.exe
_build/default/example/spawn.exe
_build/default/example/stdout.exe
_build/default/example/pipe.exe
rm -f echo-pipe
_build/default/example/pipe_echo_server.exe & \
(_build/default/example/pipe_hello_world.exe; \
sleep 1; killall pipe_echo_server.exe)
_build/default/example/send_signal.exe
bash -c "[ A$$TRAVIS == Atrue ]" || _build/default/example/sigint.exe
.PHONY : test-installation
test-installation : clean
opam pin add -y --no-action luv . --kind=path
opam reinstall -y luv
cd test/installation && dune exec ./user.exe
cd test/headers && dune exec ./headers.exe
opam remove -y luv
.PHONY : test-installation-ci
test-installation-ci :
opam pin add -y --no-action luv . --kind=git
opam install -y luv
cd test/installation && dune exec ./user.exe
cd test/headers && dune exec ./headers.exe
opam remove -y luv
opam pin remove -y luv
LATEST_TAG := \
git for-each-ref refs/tags \
--sort=-taggerdate --format='%(refname:short)' --count=1
.PHONY : upgrade-libuv
upgrade-libuv :
# (cd src/c/vendor/libuv && git fetch)
# (cd src/c/vendor/libuv && git checkout `$(LATEST_TAG)`)
make clean
make eject-build
# ocaml src/gen/headers.ml
(make && make test) || true
@echo
@echo "Sanity check:"
@echo
@(cd src/c/vendor/libuv && git log --pretty=oneline -n 5)
@echo
@git status
@echo
@echo "To get the tests to pass, edit at least test/version.ml. Then, fix"
@echo "any other errors, review the changelog, and expose any new features."
@echo "For examples, see commits around earlier libuv version upgrades."
@echo "Suggestions for review:"
@echo
@echo " make view-libuv-changelog"
@echo " git diff"
@echo
.PHONY : view-libuv-changelog
view-libuv-changelog :
(cd src/c/vendor/libuv && git show `$(LATEST_TAG)`)
AUTOGEN_OUTPUT := src/c/vendor/configure
AUTOGEN_SCRATCH := libuv-scratch
.PHONY : eject-build
eject-build :
rm -rf $(AUTOGEN_SCRATCH)
cp -r src/c/vendor/libuv $(AUTOGEN_SCRATCH)
(cd $(AUTOGEN_SCRATCH) && ./autogen.sh)
rm -rf $(AUTOGEN_OUTPUT)
mkdir -p $(AUTOGEN_OUTPUT)
mkdir -p $(AUTOGEN_OUTPUT)/m4
(diff -qr src/c/vendor/libuv $(AUTOGEN_SCRATCH) || true) \
| sed 's#^Only in ##' \
| sed 's#: #/#' \
| sed 's#^$(AUTOGEN_SCRATCH)/##' \
| xargs -I FILE cp -r $(AUTOGEN_SCRATCH)/FILE $(AUTOGEN_OUTPUT)/FILE
rm -rf $(AUTOGEN_SCRATCH)
(cd $(AUTOGEN_OUTPUT) && rm -rf aclocal.m4 autom4te.cache m4)
(cd src/c/vendor/libuv && git rev-parse HEAD) \
> $(AUTOGEN_OUTPUT)/commit-hash
.PHONY : check-ejected-build
check-ejected-build :
@((cd src/c/vendor/libuv && git rev-parse HEAD) \
| diff $(AUTOGEN_OUTPUT)/commit-hash -) || \
(echo; \
echo The vendored configure script is out of sync with libuv. Run; \
echo; \
echo " make eject-build"; \
echo; \
echo and commit the changes to $(AUTOGEN_OUTPUT).; \
echo; \
false)
.PHONY : install-autotools
install-autotools :
sudo apt install automake libtool
DOCS := docs/_build
.PHONY : docs
docs : luvbook api-docs
mkdir -p $(DOCS)
cp -r _build/default/_doc/_html/luv $(DOCS)
cp -r _build/default/_doc/_html/odoc.support $(DOCS)
@echo See $(DOCS)/index.html
.PHONY : api-docs
api-docs :
dune build @doc -p luv
SPHINX=7.2.6
.PHONY : luvbook
luvbook :
@if [ "$$(sphinx-build --version)" != "sphinx-build $(SPHINX)" ]; \
then \
echo Please install Sphinx $(SPHINX); \
exit 1; \
fi
sphinx-build -b html docs $(DOCS)
.PHONY : watch-api-docs
watch-api-docs : api-docs
inotifywait -mr -e modify --format '%f' src \
| xargs -L1 -I X make docs
.PHONY : watch-luvbook
watch-luvbook : luvbook
inotifywait -mr -e modify docs/conf.py docs/*.rst example \
| xargs -L1 -I X make docs
.PHONY : install-sphinx
install-sphinx :
sudo apt install python3-pip
pip3 install -U sphinx
PAGES := ../gh-pages
.PHONY : stage-docs
stage-docs : docs
[ -d $(PAGES) ] || git clone git@github.com:aantron/luv.git $(PAGES)
cd $(PAGES) && git checkout gh-pages
rm -rf $(PAGES)/*
cp -r $(DOCS)/* $(PAGES)
touch $(PAGES)/.nojekyll
cd $(PAGES) && git add -A && git commit --amend --no-edit --reset-author
.PHONY : publish-docs
publish-docs : stage-docs
cd $(PAGES) && git push --force-with-lease
VERSION := $(shell git describe --abbrev=0)
RELEASE := luv-$(VERSION)
.PHONY : release
release : check-ejected-build clean
rm -rf $(RELEASE) $(RELEASE).tar $(RELEASE).tar.gz _release
mkdir $(RELEASE)
cp -r dune-project LICENSE.md luv.opam luv_unix.opam README.md src $(RELEASE)
rm -rf $(RELEASE)/src/c/vendor/libuv/docs
rm -rf $(RELEASE)/src/c/vendor/libuv/img
rm -rf $(RELEASE)/src/c/vendor/libuv/test
rm -rf $(RELEASE)/src/c/vendor/libuv/tools
rm -rf $(RELEASE)/src/c/vendor/libuv/m4
rm -rf $(RELEASE)/src/gen
tar cf $(RELEASE).tar $(RELEASE)
ls -l $(RELEASE).tar
gzip -9 $(RELEASE).tar
mkdir -p _release
cp $(RELEASE).tar.gz _release
(cd _release && tar xf $(RELEASE).tar.gz)
opam pin add -y --no-action luv _release/$(RELEASE) --kind=path
opam reinstall -y --verbose luv
cd test/installation && dune exec ./user.exe --root .
cd test/headers && dune exec ./headers.exe --root .
opam remove -y luv
opam pin remove -y luv
md5sum $(RELEASE).tar.gz
ls -l $(RELEASE).tar.gz
.PHONY : clean
clean :
dune clean
rm -rf _build docs/_build luv-* *.tar *.tar.gz _release *.install echo-pipe
luv-0.5.14/README.md 0000664 0000000 0000000 00000016507 14666340476 0013717 0 ustar 00root root 0000000 0000000 # Luv
[**Luv**][luv] is a neatly-packaged OCaml/Reason binding to [libuv][libuv], the
cross-platform C library that does asynchronous I/O in Node.js and runs Node's
main loop.
Here's an example, which retrieves the Google search page:
```ocaml
let () =
Luv.DNS.getaddrinfo ~family:`INET ~node:"google.com" ~service:"80" ()
begin fun result ->
let address = (List.hd (Result.get_ok result)).addr in
let socket = Luv.TCP.init () |> Result.get_ok in
Luv.TCP.connect socket address begin fun _ ->
Luv.Stream.write socket [Luv.Buffer.from_string "GET / HTTP/1.1\r\n\r\n"]
(fun _ _ -> Luv.Stream.shutdown socket ignore);
Luv.Stream.read_start socket (function
| Error `EOF -> Luv.Handle.close socket ignore
| Error _ -> exit 2
| Ok response -> print_string (Luv.Buffer.to_string response))
end
end;
ignore (Luv.Loop.run () : bool)
```
libuv does more than just asynchronous I/O. It also supports
[multiprocessing][processes] and [multithreading][threads]. You can even [run
multiple async I/O loops, in different threads][loops]. libuv wraps a lot of
other functionality, and exposes a [comprehensive operating system API][api].
Indeed, Luv does not depend on [`Unix`][unix]. It is an alternative operating
system API. Nonetheless, Luv and `Unix` can coexist readily in one program.
Because libuv is a major component of Node.js, it is
[cross-platform][platforms] and [well-maintained][maintainers]. Luv, being a
fairly thin binding, inherits these properties.
Luv takes care of the tricky parts of dealing with libuv from OCaml:
- **Memory management** — Luv keeps track of OCaml objects that have been
passed to libuv, so that they don't get collected too early by the GC.
- **The runtime lock** — multithreaded Luv programs don't wreck the OCaml
runtime.
- **API problems** — where libuv is forced to offer difficult APIs due to
the limitations of C, Luv provides more natural APIs.
- **The build** — when Luv is installed, it internally builds libuv, so
users don't have to figure out how to do it.
- **Linking** — a specific release of libuv is statically linked into
your program together with Luv, and there is no dependency on a system
installation of libuv.
Basically, when wrapped in Luv, libuv looks like any normal OCaml library you
might install from opam or using esy. In a loose sense, libuv is just an
implementation detail of Luv — though, indeed, a very powerful one.
One of the design goals of Luv is to be easy to integrate into larger libraries,
such as [Lwt][lwt]. To that end, Luv is...
- **Minimalist** — Luv only takes care of inherent libuv headaches, such
as memory management, adding as little else as possible over libuv.
- **Unopinionated** — Luv avoids committing to design decisions beyond
those dictated by libuv and OCaml.
- **Maintainable** — Luv uses [Ctypes][ctypes] to minimize the amount of C
code in this repo, and [vendors][vendor] libuv to avoid versioning issues.
Luv is [thoroughly tested][tests]. Apart from checking return values and I/O
effects, the test cases also check for memory leaks, invalid references, and
potential issues with multithreading.
## Installing
```
opam install luv
```
If using esy, add
```
"dependencies": {
"@opam/luv": "*"
}
```
## Documentation
- [User guide][guide]
- [API reference][api]
- [Examples][examples] — explained in the [user guide][guide].
- [libuv manual][libuv-docs]
## Experimenting
You can run any example by cloning the repo:
```
git clone https://github.com/aantron/luv.git --recursive
cd luv
opam install --deps-only .
```
*Note: the clone *has* to be recursive, because libuv is vendored using a git
module. Also, the examples require OCaml 4.08+.*
Then, to run, say, [`delay.ml`][delay.ml]...
```
dune exec example/delay.exe
```
The first time you do this, it will take a couple minutes, because Luv will
build libuv.
You can add your own experiments to the [`example/`][examples] directory. To run
them, add the module name to [`example/dune`][example/dune], and then run them
like any other example:
```
dune exec example/my_test.exe
```
Alternatively, you can try Luv in a REPL by installing [utop][utop]:
```
opam install --unset-root utop
dune utop
```
Once you get the REPL prompt, try running `Luv.Env.environ ();;`
## External libuv
You can tell Luv to ignore its vendored libuv, and build against an external one
by setting `LUV_USE_SYSTEM_LIBUV=yes` during the build. This requires libuv to
be findable by `-luv`, `uv.h` to be in the header path, and the Luv version to
be at least 0.5.7.
The external libuv can be considerably older than what Luv vendors — at
the moment, Luv supports compilation against libuv versions all the way down to
1.3.0, using a bunch of [shims][shims].
If you use an older libuv, you may want to look at the feature tests exposed by
Luv in auto-generated module [`Luv.Require`][require]. The one posted online was
generated for Luv's vendored libuv, so everything is present. If you use an
older libuv, some of the features will have type `_false feature`.
## License
Luv has several pieces, with slightly different permissive licenses:
- Luv itself is under the [MIT license][license].
- This repo links to libuv with a git submodule. However, a release archive will
generally include the full libuv source. Portions of libuv are variously
[licensed][libuv-license] under the MIT, 2-clause BSD, 3-clause BSD, and ISC
licenses.
- The user guide is a very heavily reworked version of [uvbook][uvbook],
originally by Nikhil Marathe, which was incorporated into the libuv docs as
the [libuv user guide][libuv-guide], and made available under
[CC BY 4.0][guide-license].
[luv]: https://github.com/aantron/luv
[libuv]: https://github.com/libuv/libuv
[platforms]: https://github.com/libuv/libuv/blob/master/SUPPORTED_PLATFORMS.md#readme
[maintainers]: https://github.com/libuv/libuv/blob/master/MAINTAINERS.md#readme
[ctypes]: https://github.com/ocamllabs/ocaml-ctypes#readme
[vendor]: https://github.com/aantron/luv/tree/master/src/c/vendor
[tests]: https://github.com/aantron/luv/tree/master/test
[guide]: https://aantron.github.io/luv/
[api]: https://aantron.github.io/luv/luv/index.html#api-reference
[examples]: https://github.com/aantron/luv/tree/master/example
[libuv-docs]: http://docs.libuv.org/en/v1.x/
[experiment]: https://aantron.github.io/luv/introduction.html
[lwt]: https://github.com/ocsigen/lwt#readme
[license]: https://github.com/aantron/luv/blob/master/LICENSE.md
[libuv-license]: https://github.com/libuv/libuv/blob/v1.x/LICENSE
[uvbook]: https://github.com/nikhilm/uvbook
[libuv-guide]: http://docs.libuv.org/en/v1.x/guide.html
[guide-license]: https://github.com/aantron/luv/blob/master/docs/LICENSE
[processes]: https://aantron.github.io/luv/processes.html
[threads]: https://aantron.github.io/luv/threads.html
[loops]: https://aantron.github.io/luv/threads.html#multiple-event-loops
[unix]: https://caml.inria.fr/pub/docs/manual-ocaml/libref/Unix.html
[delay.ml]: https://github.com/aantron/luv/blob/master/example/delay.ml
[example/dune]: https://github.com/aantron/luv/blob/master/example/dune
[utop]: https://github.com/ocaml-community/utop
[shims]: https://github.com/aantron/luv/blob/master/src/c/shims.h
[require]: https://aantron.github.io/luv/luv/Luv/Require/index.html
luv-0.5.14/docs/ 0000775 0000000 0000000 00000000000 14666340476 0013357 5 ustar 00root root 0000000 0000000 luv-0.5.14/docs/LICENSE 0000664 0000000 0000000 00000044332 14666340476 0014372 0 ustar 00root root 0000000 0000000 Attribution 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More_considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
d. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
e. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
f. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
g. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
h. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
4. If You Share Adapted Material You produce, the Adapter's
License You apply must not prevent recipients of the Adapted
Material from complying with this Public License.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.
luv-0.5.14/docs/about.rst 0000664 0000000 0000000 00000002132 14666340476 0015221 0 ustar 00root root 0000000 0000000 About
=====
`Nikhil Marathe `_ started writing this book one
afternoon (June 16, 2012) when he didn't feel like programming. He had recently
been stung by the lack of good documentation on libuv while working on
`node-taglib `_. Although reference
documentation was present, there were no comprehensive tutorials. This book is
the output of that need and tries to be accurate. That said, the book may have
mistakes. Pull requests are encouraged.
Nikhil is indebted to Marc Lehmann's comprehensive `man page
`_ about libev which
describes much of the semantics of the two libraries.
This book was made using `Sphinx `_ and `vim
`_.
.. note::
In 2017 the libuv project incorporated the Nikhil's work into the official
documentation and it's maintained there henceforth.
This version of the book was heavily reworked in January 2020 by Anton Bachin,
to become the User Guide of `Luv `_, the libuv
binding.
luv-0.5.14/docs/basics.rst 0000664 0000000 0000000 00000033131 14666340476 0015356 0 ustar 00root root 0000000 0000000 Basics
======
libuv offers an **asynchronous**, **event-driven** style of programming. Its
core job is to provide an event loop and callback-based notifications of I/O
and other activities. libuv offers core utilities like timers, non-blocking
networking support, asynchronous file system access, child processes, and more.
Event loops
-----------
In event-driven programming, an application expresses interest in certain events
and responds to them when they occur. The responsibility of gathering events
from the operating system or monitoring other sources of events is handled by
libuv, and the user can register callbacks to be invoked when an event occurs.
The event loop usually keeps running *forever*. In pseudocode:
.. code-block:: ocaml
while there are still live objects that could generate events do
let e = get the next event in
if there is a callback waiting on e then
call the callback
done
Some examples of events are:
- A file is ready for writing
- A socket has data ready to be read
- A timer has timed out
This event loop is inside :api:`Luv.Loop.run `, which
binds to ``uv_run``, the main function of libuv.
The most common activity of systems programs is to deal with input and output,
rather than a lot of number-crunching. The problem with using conventional
input/output functions (``read``, ``fprintf``, etc.) is that they are
**blocking**. The actual write to a hard disk, or reading from a network, takes
a disproportionately long time compared to the speed of the processor. The
functions don't return until the task is done, so that your program is blocked
doing nothing until then. For programs which require high performance this is a
major obstacle, as other activities and other I/O operations are kept waiting.
One of the standard solutions is to use threads. Each blocking I/O operation is
started in a separate thread, or in a thread pool. When the blocking function
gets invoked in the thread, the processor can schedule another thread to run,
which actually needs the CPU.
The approach followed by libuv uses another style, which is the **asynchronous,
non-blocking** style. Most modern operating systems provide event notification
subsystems. For example, a normal ``read`` call on a socket would block until
the sender actually sent something. Instead, the application can request the
operating system to watch the socket and put an event notification into a queue.
The application can inspect the events at its convenience and grab the data,
perhaps doing some number crunching in the meantime to use the processor to the
maximum. It is **asynchronous** because the application expressed interest at
one point, then used the data at another point in its execution sequence. It is
**non-blocking** because the application process was free to do other tasks. in
between. This fits in well with libuv's event-loop approach, since the operating
system's events can be treated as libuv events. The non-blocking ensures that
other events can continue to be handled as fast as they come in (and the
hardware allows).
Hello, world!
-------------
With the basics out of the way, let's write our first libuv program. It does
nothing, except start a loop which will exit immediately.
.. rubric:: :example:`hello_world.ml`
.. literalinclude:: ../example/hello_world.ml
:language: ocaml
:linenos:
This program exits immediately because it has no events to process. A libuv
event loop has to be told to watch out for events using the various libuv API
functions.
Here's a slightly more interesting program, which waits for one second, prints
“Hello, world!” and then exits:
.. rubric:: :example:`delay.ml`
.. literalinclude:: ../example/delay.ml
:language: ocaml
:linenos:
Console output
--------------
The first two examples used OCaml's own ``print_endline`` for console output. In
a fully asynchronous program, you may want to use libuv to write to the console
(or STDOUT) instead. Luv offers at least three ways of doing this.
Using the pre-opened file :api:`Luv.File.stdout `:
.. rubric:: :example:`print_using_file.ml`
.. literalinclude:: ../example/print_using_file.ml
:language: ocaml
:linenos:
Wrapping :api:`Luv.File.stdout ` in a pipe with
:api:`Luv.Pipe.open_ `:
.. rubric:: :example:`print_using_pipe.ml`
.. literalinclude:: ../example/print_using_pipe.ml
:language: ocaml
:linenos:
Wrapping :api:`Luv.File.stdout ` in a TTY handle
with :api:`Luv.TTY.init `:
.. rubric:: :example:`print_using_tty.ml`
.. literalinclude:: ../example/print_using_tty.ml
:language: ocaml
:linenos:
As you can see, all of these are too low-level and verbose for ordinary use.
They would need to be wrapped in a higher-level library. The examples will
continue to use ``print_endline``, which is fine for most purposes.
.. _libuv-error-handling:
Error handling
--------------
When functions fail, they produce one of the error codes in :api:`Luv.Error.t
`, wrapped in the ``Error`` side of a ``result``. In
the last example above, we used :api:`Luv.Timer.init
`, which has signature
.. code-block:: ocaml
Luv.Timer.init : unit -> (Luv.Timer.t, Luv.Error.t) result
If a call to ``Luv.Timer.init`` succeeds, it will produce ``Ok timer``. If it
fails, it might produce ``Error `ENOMEM``.
Asynchronous operations that can fail pass the ``result`` to their callback,
instead of returning it:
.. code-block:: ocaml
Luv.File.unlink : string -> ((unit, Luv.Error.t) result -> unit) -> unit
You can get the error name and description as strings by calling
:api:`Luv.Error.err_name ` and
:api:`Luv.Error.strerror `, respectively.
libuv has several different conventions for returning errors. Luv translates all
of them into the above scheme: synchronous operations return a ``result``, and
asynchronous operations pass a ``result`` to their callback.
There is only a handful of exceptions to this, but they are all easy to
understand. For example, :api:`Luv.Timer.start ` can
fail immediately, but if it starts, it can only call its callback with success.
So, it has signature
.. code-block:: ocaml
Luv.Timer.start :
Luv.Timer.t -> int -> (unit -> unit) -> (unit, Luv.Error.t) result
Luv does not raise exceptions. In addition, callbacks you pass to Luv APIs
shouldn't raise exceptions at the top level (they can use exceptions interally).
This is because such exceptions can't be allowed to go up the stack into libuv.
If a callback passed to Luv raises an exception, Luv catches it, prints a stack
trace to ``STDERR``, and then calls ``exit 2``. You can change this behavior by
installing your own handler:
.. code-block:: ocaml
Luv.Error.set_on_unhandled_exception (fun exn -> (* ... *))
Generally, only applications, rather than libraries, should call this function.
Handles
-------
libuv works by the user expressing interest in particular events. This is
usually done by creating a **handle** to an I/O device, timer or process, and
then calling a function on that handle.
The following handle types are available:
- :api:`Luv.Timer ` — timers
- :api:`Luv.Signal ` — signals
- :api:`Luv.Process ` — subprocesses
- :api:`Luv.TCP ` — TCP sockets
- :api:`Luv.UDP ` — UDP sockets
- :api:`Luv.Pipe ` — pipes
- :api:`Luv.TTY ` — consoles
- :api:`Luv.FS_event ` — filesystem events
- :api:`Luv.FS_poll ` — filesystem polling
- :api:`Luv.Poll ` — file descriptor polling
- :api:`Luv.Async ` — inter-loop communication
- :api:`Luv.Prepare ` — pre-I/O callbacks
- :api:`Luv.Check ` — post-I/O callbacks
- :api:`Luv.Idle ` — per-iteration callbacks
In addition to the above true handles, there is also :api:`Luv.File
`, which has a similar basic interface, yet is not a
proper libuv handle kind.
Example
-------
The remaining chapters of this guide will exercise many of the modules mentioned
above, but let's work with a simple one now — that is, in addition to the timer
"Hello, world!" example we've already seen!
Here is an example of using a :api:`Luv.Idle.t ` handle.
It adds a callback, that is to be called once on every iteration of the event
loop:
.. rubric:: :example:`idle.ml`
.. literalinclude:: ../example/idle.ml
:language: ocaml
:linenos:
The error handling in this example is not robust! It is using ``Result.get_ok``
and ``ignore`` to avoid dealing with potential ``Error``. If you are writing a
robust application, or a library, please use a better error-handling mechanism
instead.
Requests
--------
libuv also has **requests**. Whereas handles are long-lived, a request is a
short-lived representation of one particular instance of an asynchronous
operation. Requests are used by libuv, for example, to return complex results.
Luv manages requests automatically, so the user generally does not have to deal
with them at all.
A few request types are still exposed, however, because they are cancelable, and
can be passed, at the user's discretion, to :api:`Luv.Request.cancel
`. Explicit use of these requests is still
optional, however — they are always taken through optional arguments. So, when
using Luv, it is possible to ignore the existence of requests entirely.
See :api:`Luv.File.Request ` for a typical request
type, with example usage. This represents filesystem requests, which are
cancelable. Functions in :api:`Luv.File ` have signatures like
.. code-block:: ocaml
Luv.File.unlink :
?request:Luv.File.Request.t ->
string ->
((unit, Luv.Error.t) result -> unit) ->
unit
...in case the user needs the ability to cancel the request. This guide will
generally omit the ``?request`` argument, because it is rarely used, and always
has only this one purpose.
Here are all the exposed request types in Luv:
- :api:`Luv.File.Request `
- :api:`Luv.DNS.Addr_info.Request `
- :api:`Luv.DNS.Name_info.Request `
- :api:`Luv.Random.Request `
- :api:`Luv.Thread_pool.Request `
Everything else
---------------
libuv, and Luv, also offer a large number of other operations, all implemented
in a cross-platform fashion. See the full module listing in the
:api:`API index `. For example, one can list all
environment variables using
.. code-block:: ocaml
Luv.Env.environ : unit -> ((string * string) list, Luv.Error.t) result
Buffers
-------
Luv functions use data buffers of type :api:`Luv.Buffer.t
`. These are ordinary OCaml bigstrings (that is,
chunks of data managed from OCaml, but stored in the C heap). They are
compatible with at least the following bigstring libraries:
- Bigarray_ from OCaml's standard library
- Lwt_bytes_ from Lwt
- bigstringaf_
.. _Bigarray: https://caml.inria.fr/pub/docs/manual-ocaml/libref/Bigarray.Array1.html
.. _Lwt_bytes: https://ocsigen.org/lwt/dev/api/Lwt_bytes
.. _bigstringaf: https://github.com/inhabitedtype/bigstringaf
System calls are usually able to work with part of a buffer, by taking a pointer
to the buffer, an offset into the buffer, and a length of space, starting at the
offset, to work with. Luv functions instead take only a buffer. To work with
part of an existing buffer, use :api:`Luv.Buffer.sub
` to create a view into the buffer, and then pass the
view to Luv.
Many libuv (and Luv) functions work with *lists* of buffers. For example,
:api:`Luv.File.write ` takes such a list. This simply
means that libuv will pull data from the buffers consecutively for writing.
Likewise, :api:`Luv.File.read ` takes a list of
buffers, which it will consecutively fill. This is known as *scatter-gather
I/O*. It could be said that libuv (and Luv) expose an API more similar to
readv_ and writev_ than read_ and write_.
.. _readv: http://man7.org/linux/man-pages/man3/readv.3p.html
.. _writev: http://man7.org/linux/man-pages/man3/writev.3p.html
.. _read: http://man7.org/linux/man-pages/man3/read.3p.html
.. _write: http://man7.org/linux/man-pages/man3/write.3p.html
Luv has a couple helpers for manipulating lists of buffers:
- :api:`Luv.Buffer.total_size ` returns the
total number of bytes across all the buffers in a buffer list.
- :api:`Luv.Buffer.drop ` returns a new buffer list,
with the first N bytes removed from its front. This is useful to advance the
buffer references after a partial read into, or write from, a buffer list,
before beginning the next read or write.
Integer types
-------------
Luv usually represents C integer types with ordinary OCaml integers, such as
``int``, sometimes ``int64``. However, in some APIs, to avoid losing precision,
it seems important to preserve the full width and signedness of the original C
type. In such cases, you will encounter types from ocaml-integers_, such as
``Unsigned.Size_t.t``. You can use module ``Unsigned.Size_t`` to perform
operations at that type, or you can choose to convert to an OCaml integer with
``Unsigned.Size_t.to_int``.
.. _ocaml-integers: https://github.com/ocamllabs/ocaml-integers
luv-0.5.14/docs/conf.py 0000664 0000000 0000000 00000022564 14666340476 0014667 0 ustar 00root root 0000000 0000000 #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Introduction to Luv documentation build configuration file, created by
# sphinx-quickstart on Sat Jan 25 14:46:40 2020.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys
import os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.extlinks']
extlinks = {
'api': ('luv/Luv/%s', '%s'),
'example': ('https://github.com/aantron/luv/blob/master/example/%s', '%s'),
'man': ('http://man7.org/linux/man-pages/man%s.html', '%s')
}
# Add any paths that contain templates here, relative to this directory.
templates_path = []
# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# The encoding of source files.
#source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = 'Luv'
copyright = '2012-2016, Nikhil Marathe, 2014-2020 libuv contributors, 2020-2023 Anton Bachin'
author = 'Nikhil Marathe, libuv contributors, and Anton Bachin'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
# version = '0.5.0'
# The full version, including alpha/beta/rc tags.
# release = '0.5.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = 'en'
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['_build']
# The reST default role (used for this markup: `text`) to use for all
# documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# If true, keep warnings as "system message" paragraphs in the built documents.
#keep_warnings = False
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# -- Options for HTML output ----------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'furo'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
#html_theme_path = []
# The name for this set of Sphinx documents. If None, it defaults to
# " v documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None
# The name of an image file (relative to this directory) to use as a favicon of
# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#html_favicon = None
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = []
# Add any extra paths that contain custom files (such as robots.txt or
# .htaccess) here, relative to this directory. These files are copied
# directly to the root of the documentation.
#html_extra_path = []
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# If false, no module index is generated.
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
# If true, links to the reST sources are added to the pages.
html_show_sourcelink = False
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
html_show_sphinx = False
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# Language to be used for generating the HTML full-text search index.
# Sphinx supports the following languages:
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
# 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr'
#html_search_language = 'en'
# A dictionary with options for the search language support, empty by default.
# Now only 'ja' uses this config value
#html_search_options = {'type': 'default'}
# The name of a javascript file (relative to the configuration directory) that
# implements a search results scorer. If empty, the default will be used.
#html_search_scorer = 'scorer.js'
# Output file base name for HTML help builder.
htmlhelp_basename = 'IntroductiontoLuvdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
# Latex figure (float) alignment
#'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'IntroductiontoLuv.tex', 'Introduction to Luv Documentation',
'Nikhil Marathe and Anton Bachin', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
# If true, show URL addresses after external links.
#latex_show_urls = False
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'introductiontoluv', 'Introduction to Luv Documentation',
[author], 1)
]
# If true, show URL addresses after external links.
#man_show_urls = False
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'IntroductiontoLuv', 'Introduction to Luv Documentation',
author, 'IntroductiontoLuv', 'One line description of project.',
'Miscellaneous'),
]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []
# If false, no module index is generated.
#texinfo_domain_indices = True
# How to display URL addresses: 'footnote', 'no', or 'inline'.
#texinfo_show_urls = 'footnote'
# If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False
luv-0.5.14/docs/filesystem.rst 0000664 0000000 0000000 00000012504 14666340476 0016277 0 ustar 00root root 0000000 0000000 Filesystem
==========
.. note::
The libuv filesystem operations are different from :doc:`socket operations
`. Socket operations use the non-blocking operations provided
by the operating system. Filesystem operations use blocking functions
internally, but invoke these functions in a `thread pool`_ and notify
watchers registered with the event loop when they complete.
.. _thread pool: http://docs.libuv.org/en/v1.x/threadpool.html#thread-pool-work-scheduling
All filesystem operations have two forms — *synchronous* and *asynchronous*.
Synchronous operations are slightly easier to program with, and are faster,
because they run in the current thread instead of the thread pool (note again:
this is only an issue for filesystem operations, not sockets or pipes). However,
they can block the thread. This can happen, for example, if you use a
synchronous operation to access a network filesystem which is slow or
unavailable. It can also happen locally. So, synchronous operations should not
be used in robust applications or libraries. Synchronous filesystem operations
are found in module :api:`Luv.File.Sync `.
Asynchronous versions of all the same operations are found in the main module
:api:`Luv.File `. These each take a callback, to which they
pass their result, instead of returning their result directly, as synchronous
operations do.
As already mentioned, asynchronous filesystem operations are slower than
synchronous, because running an asynchronous operation requires communicating
twice with a thread in the libuv thread pool: once to start the operation, and
once more when it is complete. In some cases, you can mitigate this cost by
manually running multiple operations in one request in the thread pool. To do
that, use :api:`Luv.Thread_pool.queue_work
`, and run multiple *synchronous*
operations in the function you pass to it.
Note that this only offers a performance benefit if you run multiple operations.
Running only one operation is equivalent to simply using the asynchronous API —
that's how the asynchronous API is implemented.
The rest of this chapter sticks to the asynchronous API.
Reading/writing files
---------------------
A file descriptor is obtained by calling :api:`Luv.File.open_
`:
.. code-block:: ocaml
Luv.File.open_ :
?mode:Luv.File.Mode.t list ->
string ->
Luv.File.Open_flag.t list ->
((Luv.File.t, Luv.Error.t) result -> unit) ->
unit
Despite the verbose signature, usage is simple:
.. code-block:: ocaml
Luv.File.open_ "foo" [`RDONLY] (fun result -> (* ... *))
:api:`Luv.File.Open_flag.t ` and
:api:`Luv.File.Mode.t ` expose the standard Unix
open flags and file modes, respectively. libuv takes care of converting them to
appropriate values on Windows. ``mode`` is optional, because it is only used if
``open_`` creates the file.
File descriptors are closed using :api:`Luv.File.close
`:
.. code-block:: ocaml
Luv.File.close : Luv.File.t -> ((unit, Luv.Error.t) result -> unit) -> unit
Finally, reading and writing are done with :api:`Luv.File.read
` and :api:`Luv.File.write
`:
.. code-block:: ocaml
Luv.File.read :
Luv.File.t ->
Luv.Buffer.t list ->
((Unsigned.Size_t.t, Luv.Error.t) result -> unit) ->
unit
Luv.File.write :
Luv.File.t ->
Luv.Buffer.t list ->
((Unsigned.Size_t.t, Luv.Error.t) result -> unit) ->
unit
Let's put all this together into a simple implementation of ``cat``:
.. rubric:: :example:`cat.ml`
.. literalinclude:: ../example/cat.ml
:language: ocaml
:linenos:
:emphasize-lines: 2,8,16-19,21,25,29
.. note::
``on_write`` is not robust, because we don't check that the number of bytes
written is actually the number of bytes we requested to write. Fewer bytes
could have been written, in which case we would need to try again to write
the remaining bytes.
.. warning::
Due to the way filesystems and disk drives are configured for performance,
a write that succeeds may not be committed to disk yet.
Filesystem operations
---------------------
All the standard filesystem operations like ``unlink``, ``rmdir``, ``stat`` are
supported both synchronously and asynchronously. The easiest way to see the full
list, with simplified signatures, is to scroll down through :api:`Luv.File.Sync
`.
File change events
------------------
All modern operating systems provide APIs to put watches on individual files or
directories and be informed when the files are modified. libuv wraps common
file change notification libraries [#fsnotify]_, and the wrapper is exposed by
Luv as module :api:`Luv.FS_event `. To demonstrate, let's
build a simple utility which runs a command whenever any of the watched files
change::
./onchange [file2] ...
.. rubric:: :example:`onchange.ml`
.. literalinclude:: ../example/onchange.ml
:language: ocaml
:linenos:
:emphasize-lines: 10,18,20,24
----
.. [#fsnotify] inotify on Linux, FSEvents on Darwin, kqueue on BSDs,
ReadDirectoryChangesW on Windows, event ports on Solaris. Unsupported on Cygwin
luv-0.5.14/docs/index.rst 0000664 0000000 0000000 00000001163 14666340476 0015221 0 ustar 00root root 0000000 0000000 Luv user guide
==============
This guide is a small set of tutorials on using Luv_, a binding from
OCaml/ReasonML to libuv_, the cross-platform asynchronous I/O library in
Node.js.
See also:
- `Project page`_
- `API reference`_
- `libuv manual`_
.. _Luv: https://github.com/aantron/luv
.. _Project page: https://github.com/aantron/luv
.. _libuv: https://github.com/libuv/libuv
.. _API reference: luv/index.html#api-reference
.. _libuv manual: http://docs.libuv.org/en/v1.x/
.. rubric:: Table of contents
.. toctree::
:maxdepth: 2
introduction
basics
filesystem
networking
threads
processes
about
luv-0.5.14/docs/introduction.rst 0000664 0000000 0000000 00000002552 14666340476 0016636 0 ustar 00root root 0000000 0000000 Introduction
============
Running the examples
--------------------
All the examples in this guide can be found in the ``example/`` directory in the
Luv_ repo. You can run them locally by cloning the repo::
git clone https://github.com/aantron/luv.git --recursive
cd luv
and then running ``make examples``. Note the examples require OCaml 4.08 or
higher.
To run a specific example, say, ``delay.ml``, run::
dune exec example/delay.exe
You can also pass arguments to examples with this syntax:
.. code-block::
dune exec example/http_get.exe -- google.com /
Using the repo for experiments
------------------------------
You can quickly experiment with Luv by writing your own code in ``example/``.
Let's say you add a file, ``example/test.ml``. Add it to the ``names`` list in
``example/dune``:
.. code-block::
:emphasize-lines: 6
(executables
(names
hello_world
; ...
sigint
test) ; <-- here!
(libraries luv))
...and then run it like any other example:
.. code-block::
dune exec example/my_test.exe
If you have utop_ installed, you can also run::
dune utop
inside the Luv repo, to access the Luv API in a REPL. For example, try
``dune utop``, and, when you get the REPL prompt, run ``Luv.Env.environ ();;``
.. _Luv: https://github.com/aantron/luv
.. _utop: https://github.com/ocaml-community/utop
luv-0.5.14/docs/networking.rst 0000664 0000000 0000000 00000015171 14666340476 0016305 0 ustar 00root root 0000000 0000000 Networking
==========
The overall flow of network programming in libuv (and Luv) is very similar to
the BSD socket interface, but all functions take callbacks, and many
inconveniences are addressed.
Networking is handled by :api:`Luv.TCP `, :api:`Luv.UDP
`, and :api:`Luv.DNS `.
.. note::
The code examples in this chapter exist to demonstrate certain Luv APIs. They
are not always robust. For instance, they don't always close connections
properly, and they don't handle all errors gracefully.
.. _TCP:
TCP
---
TCP is a connection-oriented stream protocol. TCP handles are therefore a kind
of libuv *stream*. All this means is that a :api:`Luv.TCP.t
` is also a :api:`Luv.Stream.t
`, which, in turn, is also a :api:`Luv.Handle.t
`. So, functions from all three modules can be used
with :api:`Luv.TCP.t `. In particular, you will typically
use...
- :api:`Luv.TCP ` to initialize a TCP socket handle.
- :api:`Luv.Stream ` to do I/O on the socket.
- :api:`Luv.Handle.close ` to close the socket.
Server
++++++
A server socket is typically...
1. Created with :api:`Luv.TCP.init `.
2. Assigned an address with :api:`Luv.TCP.bind `.
3. Made to listen on the assigned address with :api:`Luv.Stream.listen
`. This will call its callback each time there
is a client connection ready to be accepted.
4. Told to accept a connection with :api:`Luv.Stream.accept
`.
After that, one has an ordinary TCP connection. :api:`Luv.Stream.read_start
` and :api:`Luv.Stream.write
` are used to communicate on it, and
:api:`Luv.Handle.close ` is used to close it.
Here is a simple echo server that puts all this together:
.. rubric:: :example:`tcp_echo_server.ml`
.. literalinclude:: ../example/tcp_echo_server.ml
:language: ocaml
:linenos:
:emphasize-lines: 4,6,12,17,24
The most interesting thing to note is that :api:`Luv.Stream.read_start
` doesn't perform only one read, but reads in
a loop until either :api:`Luv.Stream.read_stop
` is called, or the socket is closed.
Client
++++++
Client programming is very straightforward: use :api:`Luv.TCP.connect
` to establish a connection. Then, use
:api:`Luv.Stream.write ` and
:api:`Luv.Stream.read_start ` to communicate.
The example below sends "Hello, world!" to the echo server, waits for the
response, and prints it:
.. rubric:: :example:`tcp_hello_world.ml`
.. literalinclude:: ../example/tcp_hello_world.ml
:language: ocaml
:linenos:
:emphasize-lines: 5,10,11,13
You can run the above server and this client together with these commands:
.. code-block::
dune exec example/tcp_echo_server.exe &
dune exec example/tcp_hello_world.exe
killall tcp_echo_server.exe
In the DNS_ section below, we will expand this example to look up a web server
and perform an HTTP GET request.
UDP
---
UDP_ is a connectionless protocol. Rather than behaving as a stream, a UDP
socket allows sending and receiving discrete *datagrams*. So, in Luv (as in
libuv), a :api:`Luv.UDP.t ` is *not* a
:api:`Luv.Stream.t `. It does, however, have similar
functions :api:`Luv.UDP.send ` and
:api:`Luv.UDP.recv_start `. A :api:`Luv.UDP.t
` is still a :api:`Luv.Handle.t
`, however, so a UDP socket is closed with
:api:`Luv.Handle.close `.
.. _UDP: https://en.wikipedia.org/wiki/User_Datagram_Protocol
Let's write UDP versions of the echo server and the "Hello, world!" program:
.. rubric:: :example:`udp_echo_server.ml`
.. literalinclude:: ../example/udp_echo_server.ml
:language: ocaml
:linenos:
:emphasize-lines: 4,6,12
.. rubric:: :example:`udp_hello_world.ml`
.. literalinclude:: ../example/udp_hello_world.ml
:language: ocaml
:linenos:
:emphasize-lines: 6,8
You can run the client and the server together with:
.. code-block::
dune exec example/udp_echo_server.exe &
dune exec example/udp_hello_world.exe
killall udp_echo_server.exe
The two most immediate differences, compared to the TCP functions, are:
1. There are no notions of listening or connecting.
2. Since there is no connection, when data is received by
:api:`Luv.UDP.recv_start `, the sending peer's
address is provided to the callback together with the data.
Apart from ordinary peer-to-peer communication, UDP supports multicast. See
:api:`Luv.UDP ` for multicast and other helper functions.
.. _DNS:
Querying DNS
------------
libuv provides asynchronous DNS resolution with :api:`Luv.DNS.getaddrinfo
`. Let's implement a clone of the ``host``
command:
.. rubric:: :example:`host.ml`
.. literalinclude:: ../example/host.ml
:language: ocaml
:linenos:
:api:`Luv.DNS.getaddrinfo ` has a large number
of optional arguments for fine-tuning the lookup. These correspond to the fields
and flags documented at :man:`getaddrinfo(3p) <3/getaddrinfo.3p>`.
libuv also provides reverse lookup, which is exposed as
:api:`Luv.DNS.getnameinfo `.
Example: HTTP GET
-----------------
We can use :api:`Luv.TCP ` and :api:`Luv.DNS `
to run fairly complete HTTP GET requests:
.. rubric:: :example:`http_get.ml`
.. literalinclude:: ../example/http_get.ml
:language: ocaml
:linenos:
:emphasize-lines: 5,12,19,21,22,24,31
You can try this in the Luv repo with the command::
dune exec example/http_get.exe -- google.com /
Network interfaces
------------------
Information about the system's network interfaces can be obtained by calling
:api:`Luv.Network.interface_addresses
`. This simple program prints out
all the interface details made available by libuv:
.. rubric:: :example:`ifconfig.ml`
.. literalinclude:: ../example/ifconfig.ml
:language: ocaml
:linenos:
``is_internal`` is true for loopback interfaces. Note that if an interface has
multiple addresses (for example, an IPv4 address and an IPv6 address), the
interface will be reported multiple times, once with each address.
luv-0.5.14/docs/processes.rst 0000664 0000000 0000000 00000011110 14666340476 0016111 0 ustar 00root root 0000000 0000000 Processes
=========
libuv offers cross-platform process management, which is exposed in
:api:`Luv.Process `.
Spawning child processes
------------------------
To spawn a process, use :api:`Luv.Process.spawn `:
.. rubric:: :example:`spawn.ml`
.. literalinclude:: ../example/spawn.ml
:language: ocaml
:linenos:
The reason this mysteriously short program waits for the child ``sleep`` process
to exit is that :api:`Luv.Process.spawn ` creates
a :api:`Luv.Process.t ` handle and registers it with the
event loop, which we then run with :api:`Luv.Loop.run
`. It is :api:`Luv.Loop.run `
that waits. The process handle is also returned to us, but, in this example, we
call ``ignore`` on it on line 2.
:api:`Luv.Process.spawn ` has a large number of
optional arguments for controlling the child process' working directory,
environment variables, and so on. Three of the optional arguments deserve some
extra attention:
- ``?on_exit``, if supplied, is called when the process terminates.
- ``?detached:true`` makes the child process fully independent of the parent; in
particular, the parent can exit without killing the child.
- ``?redirect`` is the subject of the next section.
Child process I/O
-----------------
By default, the standard file descriptors of a child process all point to
``/dev/null``, or ``NUL`` on Windows. You can use the ``?redirect`` argument of
:api:`Luv.Process.spawn ` to change this.
For example, to share the parent's ``STDOUT`` with the child:
.. rubric:: :example:`stdout.ml`
.. literalinclude:: ../example/stdout.ml
:language: ocaml
:linenos:
A variant of :api:`Luv.Process.inherit_fd `
is :api:`Luv.Process.inherit_stream `. It
does the same thing, but the function, rather than taking a raw file descriptor,
extracts a file descriptor from a libuv stream you already have in the parent
(for example, a TCP socket or a pipe).
The alternative to this is to connect a file descriptor in the child to a pipe
in the parent. The difference between having a child *inherit* a pipe, and
creating a pipe *between* parent and child, is, of course, that...
- When inheriting a pipe, the read end in the child is the same as the read end
in the parent, and likewise for the write end, and the communication is
typically with some third party.
- When creating a pipe for parent-child communication, the read end in the
child is connected to the *write* end in the parent, and vice versa.
For this, you need to first create a :api:`Luv.Pipe.t `,
which is a kind of libuv stream. So, reading from and writing to it are done the
same way as for :ref:`TCP sockets `.
.. rubric:: :example:`pipe.ml`
.. literalinclude:: ../example/pipe.ml
:language: ocaml
:linenos:
:emphasize-lines: 5,8,10,17
IPC
---
:api:`Luv.Pipe ` can also be used for general IPC between any
two processes. For this, a *server* pipe has to be assigned a name using
:api:`Luv.Pipe.bind `, and the client connects with
:api:`Luv.Pipe.connect `. After that, the flow is
largely the same as for :ref:`TCP sockets `. Indeed, if you compare the
examples below to the ones at section :ref:`TCP`, you will see that only the
first few lines of initialization are different. Almost everything else is the
same, because both pipes and TCP sockets are libuv streams.
.. rubric:: :example:`pipe_echo_server.ml`
.. literalinclude:: ../example/pipe_echo_server.ml
:language: ocaml
:linenos:
:emphasize-lines: 3,5,11,16,23
.. rubric:: :example:`pipe_hello_world.ml`
.. literalinclude:: ../example/pipe_hello_world.ml
:language: ocaml
:linenos:
:emphasize-lines: 4,9,10,12
You can run the IPC server and client together with:
.. code-block::
dune exec example/pipe_echo_server.exe &
dune exec example/pipe_hello_world.exe
killall pipe_echo_server.exe
Signals
-------
Despite its frightening name, :api:`Luv.Process.kill
` only sends a signal to a given process:
.. rubric:: :example:`send_signal.ml`
.. literalinclude:: ../example/send_signal.ml
:language: ocaml
:linenos:
:emphasize-lines: 5
Use :api:`Luv.Signal ` to receive signals:
.. rubric:: :example:`sigint.ml`
.. literalinclude:: ../example/sigint.ml
:language: ocaml
:linenos:
:emphasize-lines: 4
luv-0.5.14/docs/threads.rst 0000664 0000000 0000000 00000013510 14666340476 0015543 0 ustar 00root root 0000000 0000000 Threads
=======
Wait a minute! Why threads? Aren't event loops supposed to be *the* way to do
web-scale programming? Well... not always. Threads can still be very useful,
though you will have to make use of various synchronization primitives. For
example, one way to bind a library with a blocking API, without risking blocking
your whole program, is to run its functions in threads.
Today, there are two predominant threading APIs: Windows threads and
:man:`pthreads <7/pthreads.7>` on Unix. libuv's thread API is a cross-platform
approximation of pthreads, with similar semantics.
libuv threads don't follow the model of most of the rest of libuv — event loops
and callbacks. Instead, the libuv thread API is more of a direct wrapper over
your system's threading library. It is a low-level part of libuv, over which
some other parts of libuv are implemented, but which is also exposed for
applications to use.
This means that libuv thread functions can block, the same as functions in
pthreads.
Starting and waiting
--------------------
Start a thread using :api:`Luv.Thread.create ` and
wait for it to exit using :api:`Luv.Thread.join `:
.. rubric:: :example:`threads.ml`
.. literalinclude:: ../example/threads.ml
:language: ocaml
:linenos:
:emphasize-lines: 23,28,32,33
Note that this program does not call :api:`Luv.Loop.run
`. This is because, again, threading is a separate,
simpler, and lower-level part of libuv.
libuv thread pool
-----------------
:api:`Luv.Thread_pool.queue_work ` can be
used to run functions in threads from libuv's thread pool, the same thread pool
libuv uses internally for filesystem and DNS requests:
.. rubric:: :example:`thread_pool.ml`
.. literalinclude:: ../example/thread_pool.ml
:language: ocaml
:linenos:
:emphasize-lines: 2
This can be easier than creating individual threads, because it is not necessary
to keep track of each thread to later call :api:`Luv.Thread.join
`. The thread pool requests are registered with a
libuv event loop, so a single call to :api:`Luv.Loop.run
` is enough to wait for all of them.
Use :api:`Luv.Thread_pool.set_size ` to
set the size of the libuv thread pool. This function should be called by
applications (not libraries) as early as possible during their initialization.
Synchronization primitives
--------------------------
libuv offers several cross-platform synchronization primitives, which work
largely like their pthreads counterparts:
- :api:`Luv.Mutex ` — mutexes
- :api:`Luv.Rwlock ` — read-write locks
- :api:`Luv.Semaphore ` — semaphores
- :api:`Luv.Condition ` — condition variables
- :api:`Luv.Barrier ` — barriers
- :api:`Luv.Once ` — once-only barriers
- :api:`Luv.TLS ` — thread-local storage
Here's an example that uses a mutex to wait for a thread to finish its work:
.. rubric:: :example:`mutex.ml`
.. literalinclude:: ../example/mutex.ml
:language: ocaml
:linenos:
:emphasize-lines: 3,5,7,10
Inter-thread communication
--------------------------
In addition to all the synchronization primitives listed above, libuv offers one
more method of inter-thread communication. If you have a thread that is blocked
inside :api:`Luv.Loop.run `, as your program's main
thread typically would be, you can cause :api:`Luv.Loop.run
` to "wake up" and run a callback using :api:`Luv.Async
`:
.. rubric:: :example:`progress.ml`
.. literalinclude:: ../example/progress.ml
:language: ocaml
:linenos:
:emphasize-lines: 7,15,21,25
Technically, this is a form of *inter-loop* communication, since the
notification is received by a loop, in whatever thread happens to be calling
:api:`Luv.Loop.run ` for that loop. The notification
can be sent by any thread.
.. warning::
The callback may be invoked immediately after :api:`Luv.Async.send
` is called, or after some time. libuv may
combine multiple calls to :api:`Luv.Async.send
` into one callback call.
Multiple event loops
--------------------
You can run multiple libuv event loops. A complex application might have several
"primary" threads, each running its own event loop, several ordinary worker
threads, and be communicating with some external processes, some of which might
also be running libuv.
To run multiple event loops, create them with :api:`Luv.Loop.init
`. Then, pass them as the ``?loop`` arguments to the
various Luv APIs. Here are some sample calls:
.. code-block:: ocaml
let secondary_loop = Luv.Loop.init () |> Stdlib.Result.get_ok in (* ... *)
ignore @@ Luv.Loop.run ~loop:secondary_loop ();
Luv.File.open_ ~loop:secondary_loop "foo" [`RDONLY] (fun _ -> (* ... *))
In the future, Luv may lazily create a loop on demand in each thread when it
first tries to use libuv, store a reference to it in a TLS key, and pass that as
the default value of the ``?loop`` argument throughout the API.
OCaml runtime lock
------------------
Luv integrates libuv with the OCaml runtime lock. This means that, as in any
other OCaml program, two threads cannot be running OCaml code at the same time.
However, Luv releases the lock when calling a potentially-blocking libuv API, so
that other threads can run while the calling thread is blocked. In particular,
the lock is released during calls to :api:`Luv.Loop.run
`, which means that other threads can run in between
when you make a call to a *non-blocking* API, and when its callback is called by
libuv.
luv-0.5.14/dune-project 0000664 0000000 0000000 00000000036 14666340476 0014750 0 ustar 00root root 0000000 0000000 (lang dune 2.7)
(cram enable)
luv-0.5.14/example/ 0000775 0000000 0000000 00000000000 14666340476 0014062 5 ustar 00root root 0000000 0000000 luv-0.5.14/example/cat.ml 0000664 0000000 0000000 00000001671 14666340476 0015170 0 ustar 00root root 0000000 0000000 let () =
Luv.File.open_ Sys.argv.(1) [`RDONLY] begin function
| Error e ->
Printf.eprintf "Error opening file: %s\n" (Luv.Error.strerror e)
| Ok file ->
let buffer = Luv.Buffer.create 1024 in
let rec on_read = function
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e)
| Ok bytes_read ->
let bytes_read = Unsigned.Size_t.to_int bytes_read in
if bytes_read = 0 then
Luv.File.close file ignore
else
Luv.File.write
Luv.File.stdout
[Luv.Buffer.sub buffer ~offset:0 ~length:bytes_read]
on_write
and on_write = function
| Error e ->
Printf.eprintf "Write error: %s\n" (Luv.Error.strerror e)
| Ok _bytes_written ->
Luv.File.read file [buffer] on_read
in
Luv.File.read file [buffer] on_read
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/delay.ml 0000664 0000000 0000000 00000000324 14666340476 0015511 0 ustar 00root root 0000000 0000000 let () =
let timer = Luv.Timer.init () |> Result.get_ok in
ignore (Luv.Timer.start timer 1000 (fun () ->
print_endline "Hello, world!"));
print_endline "Waiting...";
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/dune 0000664 0000000 0000000 00000000574 14666340476 0014746 0 ustar 00root root 0000000 0000000 (executables
(names
hello_world
delay
print_using_file
print_using_pipe
print_using_tty
idle
cat
onchange
tcp_echo_server
tcp_hello_world
udp_echo_server
udp_hello_world
host
http_get
readme
ifconfig
threads
thread_pool
mutex
progress
spawn
stdout
pipe
pipe_echo_server
pipe_hello_world
send_signal
sigint)
(libraries luv))
luv-0.5.14/example/hello_world.ml 0000664 0000000 0000000 00000000114 14666340476 0016722 0 ustar 00root root 0000000 0000000 let () =
print_endline "Hello, world!";
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/host.ml 0000664 0000000 0000000 00000000510 14666340476 0015365 0 ustar 00root root 0000000 0000000 let () =
Luv.DNS.getaddrinfo ~family:`INET ~node:Sys.argv.(1) () begin function
| Error e ->
Printf.eprintf "Cannot resolve host: %s\n" (Luv.Error.strerror e)
| Ok addr_infos ->
print_endline
(Option.get (Luv.Sockaddr.to_string (List.hd addr_infos).addr))
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/http_get.ml 0000664 0000000 0000000 00000002246 14666340476 0016236 0 ustar 00root root 0000000 0000000 let () =
let host = Sys.argv.(1) in
let path = Sys.argv.(2) in
Luv.DNS.getaddrinfo ~family:`INET ~node:host ~service:"80" () begin function
| Error e ->
Printf.eprintf "Cannot resolve host: %s\n" (Luv.Error.strerror e)
| Ok addr_infos ->
let address = (List.hd addr_infos).addr in
let socket = Luv.TCP.init () |> Result.get_ok in
Luv.TCP.connect socket address begin function
| Error e ->
Printf.eprintf "Cannot connect: %s\n" (Luv.Error.strerror e)
| Ok () ->
let request =
Printf.ksprintf
Luv.Buffer.from_string "GET %s HTTP/1.1\r\n\r\n" path
in
Luv.Stream.write socket [request] (fun _ _ ->
Luv.Stream.shutdown socket ignore);
Luv.Stream.read_start socket begin function
| Error `EOF ->
Luv.Handle.close socket ignore
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close socket ignore
| Ok response ->
print_endline (Luv.Buffer.to_string response)
end
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/idle.ml 0000664 0000000 0000000 00000000457 14666340476 0015337 0 ustar 00root root 0000000 0000000 let () =
let idle = Luv.Idle.init () |> Result.get_ok in
let counter = ref 0 in
ignore @@ Luv.Idle.start idle begin fun () ->
counter := !counter + 1;
print_endline "Loop iteration";
if !counter >= 10 then
ignore (Luv.Idle.stop idle)
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/ifconfig.ml 0000664 0000000 0000000 00000001400 14666340476 0016173 0 ustar 00root root 0000000 0000000 let () =
Luv.Network.interface_addresses ()
|> Result.get_ok
|> List.iter begin fun interface ->
let open Luv.Network.Interface_address in
print_endline interface.name;
if interface.is_internal then
print_endline " Internal";
Printf.printf " Physical: %02x:%02x:%02x:%02x:%02x:%02x\n"
(Char.code interface.physical.[0])
(Char.code interface.physical.[1])
(Char.code interface.physical.[2])
(Char.code interface.physical.[3])
(Char.code interface.physical.[4])
(Char.code interface.physical.[5]);
Printf.printf " Address: %s\n"
(Option.get (Luv.Sockaddr.to_string interface.address));
Printf.printf " Netmask: %s\n"
(Option.get (Luv.Sockaddr.to_string interface.netmask))
end
luv-0.5.14/example/mutex.ml 0000664 0000000 0000000 00000000372 14666340476 0015560 0 ustar 00root root 0000000 0000000 let () =
let mutex = Luv.Mutex.init () |> Result.get_ok in
Luv.Mutex.lock mutex;
ignore @@ Luv.Thread.create begin fun () ->
Luv.Time.sleep 1000;
Luv.Mutex.unlock mutex
end;
Luv.Mutex.lock mutex;
print_endline "Worker finished"
luv-0.5.14/example/onchange.ml 0000664 0000000 0000000 00000001652 14666340476 0016202 0 ustar 00root root 0000000 0000000 let () =
match Array.to_list Sys.argv with
| [] | [_] | [_; _] ->
Printf.eprintf "Usage: onchange [file2]..."
| _::command::files ->
files |> List.iter begin fun target ->
let watcher = Luv.FS_event.init () |> Result.get_ok in
Luv.FS_event.start ~recursive:true watcher target begin function
| Error e ->
Printf.eprintf
"Error watching %s: %s\n" target (Luv.Error.strerror e);
ignore (Luv.FS_event.stop watcher);
Luv.Handle.close watcher ignore
| Ok (file, events) ->
if List.mem `RENAME events then
prerr_string "renamed ";
if List.mem `CHANGE events then
prerr_string "changed ";
prerr_endline file;
let exit_status = Sys.command command in
if exit_status <> 0 then
Stdlib.exit exit_status
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/pipe.ml 0000664 0000000 0000000 00000001052 14666340476 0015347 0 ustar 00root root 0000000 0000000 let () =
let pipe = Luv.Pipe.init () |> Result.get_ok in
let redirect = Luv.Process.[
to_parent_pipe ~fd:stdout ~parent_pipe:pipe ()
]
in
ignore (Luv.Process.spawn ~redirect "echo" ["echo"; "Hello,"; "world!"]);
Luv.Stream.read_start pipe begin function
| Error `EOF ->
Luv.Handle.close pipe ignore;
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close pipe ignore
| Ok buffer ->
print_string (Luv.Buffer.to_string buffer)
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/pipe_echo_server.ml 0000664 0000000 0000000 00000001475 14666340476 0017744 0 ustar 00root root 0000000 0000000 let () =
let server = Luv.Pipe.init () |> Result.get_ok in
ignore (Luv.Pipe.bind server "echo-pipe");
Luv.Stream.listen server begin function
| Error e ->
Printf.eprintf "Listen error: %s\n" (Luv.Error.strerror e)
| Ok () ->
let client = Luv.Pipe.init () |> Result.get_ok in
match Luv.Stream.accept ~server ~client with
| Error _ ->
Luv.Handle.close client ignore
| Ok () ->
Luv.Stream.read_start client begin function
| Error `EOF ->
Luv.Handle.close client ignore
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close client ignore
| Ok buffer ->
Luv.Stream.write client [buffer] (fun _ -> ignore)
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/pipe_hello_world.ml 0000664 0000000 0000000 00000001401 14666340476 0017737 0 ustar 00root root 0000000 0000000 let () =
let client = Luv.Pipe.init () |> Result.get_ok in
Luv.Pipe.connect client "echo-pipe" begin function
| Error e ->
Printf.eprintf "Connect error: %s\n" (Luv.Error.strerror e)
| Ok () ->
let message = Luv.Buffer.from_string "Hello, world!" in
Luv.Stream.write client [message] (fun _result _bytes_written ->
Luv.Stream.shutdown client ignore);
Luv.Stream.read_start client begin function
| Error `EOF ->
Luv.Handle.close client ignore
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close client ignore
| Ok response ->
print_endline (Luv.Buffer.to_string response)
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/print_using_file.ml 0000664 0000000 0000000 00000000170 14666340476 0017752 0 ustar 00root root 0000000 0000000 let () =
Luv.File.(write stdout [Luv.Buffer.from_string "Hello, world!\n"]) ignore;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/print_using_pipe.ml 0000664 0000000 0000000 00000000357 14666340476 0017777 0 ustar 00root root 0000000 0000000 let () =
let pipe = Luv.Pipe.init () |> Result.get_ok in
Luv.Pipe.open_ pipe Luv.File.stdout |> Result.get_ok;
Luv.Stream.write pipe [Luv.Buffer.from_string "Hello, world!\n"]
(fun _ _ -> ());
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/print_using_tty.ml 0000664 0000000 0000000 00000000301 14666340476 0017647 0 ustar 00root root 0000000 0000000 let () =
let tty = Luv.TTY.init Luv.File.stdout |> Result.get_ok in
Luv.Stream.write tty [Luv.Buffer.from_string "Hello, world!\n"]
(fun _ _ -> ());
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/progress.ml 0000664 0000000 0000000 00000001222 14666340476 0016255 0 ustar 00root root 0000000 0000000 let () =
let progress = ref 0. in
let show_progress () =
Printf.printf "%i%%\n%!" (int_of_float (!progress *. 100.)) in
let notification =
Luv.Async.init (fun _ -> show_progress ()) |> Result.get_ok in
let rec do_work total n =
if n >= total then
()
else begin
Luv.Time.sleep 1000;
progress := float_of_int (n + 1) /. float_of_int total;
ignore (Luv.Async.send notification);
do_work total (n + 1)
end
in
let finished _ =
Luv.Handle.close notification ignore;
print_endline "Done"
in
Luv.Thread_pool.queue_work (fun () -> do_work 3 0) finished;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/readme.ml 0000664 0000000 0000000 00000001222 14666340476 0015646 0 ustar 00root root 0000000 0000000 let () =
Luv.DNS.getaddrinfo ~family:`INET ~node:"google.com" ~service:"80" ()
begin fun result ->
let address = (List.hd (Result.get_ok result)).addr in
let socket = Luv.TCP.init () |> Result.get_ok in
Luv.TCP.connect socket address begin fun _ ->
Luv.Stream.write socket [Luv.Buffer.from_string "GET / HTTP/1.1\r\n\r\n"]
(fun _ _ -> Luv.Stream.shutdown socket ignore);
Luv.Stream.read_start socket (function
| Error `EOF -> Luv.Handle.close socket ignore
| Error _ -> exit 2
| Ok response -> print_string (Luv.Buffer.to_string response))
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/send_signal.ml 0000664 0000000 0000000 00000000263 14666340476 0016703 0 ustar 00root root 0000000 0000000 let () =
let child =
Luv.Process.spawn "sleep" ["sleep"; "10"] |> Result.get_ok in
ignore (Luv.Process.kill child Luv.Signal.sigkill);
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/sigint.ml 0000664 0000000 0000000 00000000437 14666340476 0015715 0 ustar 00root root 0000000 0000000 let () =
let handle = Luv.Signal.init () |> Result.get_ok in
ignore @@ Luv.Signal.start handle Luv.Signal.sigint begin fun () ->
Luv.Handle.close handle ignore;
print_endline "Exiting"
end;
print_endline "Type Ctrl+C to continue...";
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/spawn.ml 0000664 0000000 0000000 00000000140 14666340476 0015537 0 ustar 00root root 0000000 0000000 let () =
ignore (Luv.Process.spawn "sleep" ["sleep"; "1"]);
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/stdout.ml 0000664 0000000 0000000 00000000323 14666340476 0015734 0 ustar 00root root 0000000 0000000 let () =
let redirect = Luv.Process.[
inherit_fd ~fd:stdout ~from_parent_fd:stdout ()
]
in
ignore (Luv.Process.spawn ~redirect "echo" ["echo"; "Hello,"; "world!"]);
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/tcp_echo_server.ml 0000664 0000000 0000000 00000001575 14666340476 0017576 0 ustar 00root root 0000000 0000000 let () =
let address = Luv.Sockaddr.ipv4 "127.0.0.1" 7000 |> Result.get_ok in
let server = Luv.TCP.init () |> Result.get_ok in
ignore (Luv.TCP.bind server address);
Luv.Stream.listen server begin function
| Error e ->
Printf.eprintf "Listen error: %s\n" (Luv.Error.strerror e)
| Ok () ->
let client = Luv.TCP.init () |> Result.get_ok in
match Luv.Stream.accept ~server ~client with
| Error _ ->
Luv.Handle.close client ignore
| Ok () ->
Luv.Stream.read_start client begin function
| Error `EOF ->
Luv.Handle.close client ignore
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close client ignore
| Ok buffer ->
Luv.Stream.write client [buffer] (fun _ -> ignore)
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/tcp_hello_world.ml 0000664 0000000 0000000 00000001502 14666340476 0017572 0 ustar 00root root 0000000 0000000 let () =
let address = Luv.Sockaddr.ipv4 "127.0.0.1" 7000 |> Result.get_ok in
let client = Luv.TCP.init () |> Result.get_ok in
Luv.TCP.connect client address begin function
| Error e ->
Printf.eprintf "Connect error: %s\n" (Luv.Error.strerror e)
| Ok () ->
let message = Luv.Buffer.from_string "Hello, world!" in
Luv.Stream.write client [message] (fun _result _bytes_written ->
Luv.Stream.shutdown client ignore);
Luv.Stream.read_start client begin function
| Error `EOF ->
Luv.Handle.close client ignore
| Error e ->
Printf.eprintf "Read error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close client ignore
| Ok response ->
print_endline (Luv.Buffer.to_string response)
end
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/thread_pool.ml 0000664 0000000 0000000 00000000227 14666340476 0016715 0 ustar 00root root 0000000 0000000 let () =
Luv.Thread_pool.queue_work (fun () ->
Luv.Time.sleep 1000;
print_endline "Finished")
ignore;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/threads.ml 0000664 0000000 0000000 00000001305 14666340476 0016045 0 ustar 00root root 0000000 0000000 let () =
let track_length = 3 in
let rec run_tortoise = function
| 0 ->
print_endline "Tortoise done running!"
| n ->
Luv.Time.sleep 2000;
print_endline "Tortoise ran another step";
run_tortoise (n - 1)
in
let rec run_hare = function
| 0 ->
print_endline "Hare done running!"
| n ->
Luv.Time.sleep 1000;
print_endline "Hare ran another step";
run_hare (n - 1)
in
let tortoise =
Luv.Thread.create (fun () -> run_tortoise track_length)
|> Result.get_ok
in
let hare =
Luv.Thread.create (fun () -> run_hare track_length)
|> Result.get_ok
in
ignore (Luv.Thread.join tortoise);
ignore (Luv.Thread.join hare)
luv-0.5.14/example/udp_echo_server.ml 0000664 0000000 0000000 00000000741 14666340476 0017572 0 ustar 00root root 0000000 0000000 let () =
let address = Luv.Sockaddr.ipv4 "127.0.0.1" 7000 |> Result.get_ok in
let server = Luv.UDP.init () |> Result.get_ok in
ignore (Luv.UDP.bind server address);
Luv.UDP.recv_start server begin function
| Error e ->
Printf.eprintf "Receive error: %s\n" (Luv.Error.strerror e)
| Ok (_, None, _) ->
()
| Ok (buffer, Some client_address, _flags) ->
Luv.UDP.send server [buffer] client_address ignore
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/example/udp_hello_world.ml 0000664 0000000 0000000 00000001107 14666340476 0017575 0 ustar 00root root 0000000 0000000 let () =
let address = Luv.Sockaddr.ipv4 "127.0.0.1" 7000 |> Result.get_ok in
let client = Luv.UDP.init () |> Result.get_ok in
let message = Luv.Buffer.from_string "Hello, world!" in
Luv.UDP.send client [message] address ignore;
Luv.UDP.recv_start client begin function
| Error e ->
Printf.eprintf "Receive error: %s\n" (Luv.Error.strerror e);
Luv.Handle.close client ignore
| Ok (response, _server_address, _flags) ->
print_endline (Luv.Buffer.to_string response);
Luv.Handle.close client ignore
end;
ignore (Luv.Loop.run () : bool)
luv-0.5.14/luv.opam 0000664 0000000 0000000 00000002012 14666340476 0014106 0 ustar 00root root 0000000 0000000 opam-version: "2.0"
synopsis: "Binding to libuv: cross-platform asynchronous I/O"
license: "MIT"
homepage: "https://github.com/aantron/luv"
doc: "https://aantron.github.io/luv"
bug-reports: "https://github.com/aantron/luv/issues"
authors: "Anton Bachin "
maintainer: "Anton Bachin "
dev-repo: "git+https://github.com/aantron/luv.git"
depends: [
"base-unix" {build}
"ctypes" {>= "0.14.0"}
"dune" {>= "2.7.0"}
"ocaml" {>= "4.03.0"}
"alcotest" {with-test & >= "0.8.1"}
"base-unix" {with-test}
"odoc" {with-doc & = "2.4.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
]
description: "Luv is a binding to libuv, the cross-platform C library that does
asynchronous I/O in Node.js and runs its main loop.
Besides asynchronous I/O, libuv also supports multiprocessing and
multithreading. Multiple event loops can be run in different threads. libuv also
exposes a lot of other functionality, amounting to a full OS API, and an
alternative to the standard module Unix."
luv-0.5.14/luv_unix.opam 0000664 0000000 0000000 00000001102 14666340476 0015150 0 ustar 00root root 0000000 0000000 opam-version: "2.0"
synopsis: "Helpers for interfacing Luv and Unix"
license: "MIT"
homepage: "https://github.com/aantron/luv"
doc: "https://aantron.github.io/luv"
bug-reports: "https://github.com/aantron/luv/issues"
authors: "Anton Bachin "
maintainer: "Anton Bachin "
dev-repo: "git+https://github.com/aantron/luv.git"
depends: [
"base-unix"
"ctypes" {>= "0.14.0"} # Ctypes.CArray.of_string.
"dune" {>= "2.0.0"}
"luv" {>= "0.5.8"} # uv.h.
"ocaml" {>= "4.03.0"}
]
build: [
["dune" "build" "-p" name "-j" jobs]
]
luv-0.5.14/src/ 0000775 0000000 0000000 00000000000 14666340476 0013216 5 ustar 00root root 0000000 0000000 luv-0.5.14/src/DLL.ml 0000664 0000000 0000000 00000001312 14666340476 0014160 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = C.Types.DLL.t Ctypes.ptr
let open_ filename =
let lib = Ctypes.(addr (make C.Types.DLL.t)) in
let result = C.Functions.DLL.open_ (Ctypes.ocaml_string_start filename) lib in
if result then
None
else
Some lib
let close =
C.Functions.DLL.close
let sym lib name =
let address = Ctypes.(allocate (ptr void) null) in
let result =
C.Functions.DLL.sym lib (Ctypes.ocaml_string_start name) address in
if result then
None
else
Some (Ctypes.(raw_address_of_ptr (!@ address)))
let error =
C.Functions.DLL.error
luv-0.5.14/src/DLL.mli 0000664 0000000 0000000 00000002777 14666340476 0014351 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Dynamic linking.
See {{:http://docs.libuv.org/en/v1.x/dll.html} {i Shared library
handling}} in libuv. *)
type t
(** Binds {{:http://docs.libuv.org/en/v1.x/dll.html#c.uv_lib_t} [uv_lib_t]}. *)
val open_ : string -> t option
(** Loads a shared library.
Binds {{:http://docs.libuv.org/en/v1.x/dll.html#c.uv_dlopen} [uv_dlopen]}.
See {{:http://man7.org/linux/man-pages/man3/dlopen.3p.html} [dlopen(3p)]}.
Evaluates to [None] on failure. In that case, call {!Luv.DLL.error} to get
the error message. *)
val close : t -> unit
(** Closes a shared library.
Binds {{:http://docs.libuv.org/en/v1.x/dll.html#c.uv_dlclose}
[uv_dlclose]}. See {{:http://man7.org/linux/man-pages/man3/dlclose.3p.html}
[dlclose(3p)]}. *)
val sym : t -> string -> nativeint option
(** Loads a symbol from a shared library.
Binds {{:http://docs.libuv.org/en/v1.x/dll.html#c.uv_dlsym} [uv_dlsym]}. See
{{:http://man7.org/linux/man-pages/man3/dlsym.3p.html} [dlsym(3p)]}.
Evaluates to [None] on failure. In that case, call {!Luv.DLL.error} to get
the error message. *)
val error : t -> string
(** Retrieves the last error message from {!Luv.DLL.open_} or {!Luv.DLL.sym}.
Binds {{:http://docs.libuv.org/en/v1.x/dll.html#c.uv_dlerror}
[uv_dlerror]}. See {{:http://man7.org/linux/man-pages/man3/dlerror.3p.html}
[dlerror(3p)]}. *)
luv-0.5.14/src/DNS.ml 0000664 0000000 0000000 00000013272 14666340476 0014201 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
module Addr_info =
struct
module Request =
struct
type t = [ `Addr_info ] Request.t
let make () =
Request.allocate C.Types.DNS.Addr_info.Request.t
end
module Flag =
struct
type t = [
| `PASSIVE
| `CANONNAME
| `NUMERICHOST
| `NUMERICSERV
| `V4MAPPED
| `ALL
| `ADDRCONFIG
]
let to_c = let open C.Types.DNS.Addr_info.Flag in function
| `PASSIVE -> passive
| `CANONNAME -> canonname
| `NUMERICHOST -> numerichost
| `NUMERICSERV -> numericserv
| `V4MAPPED -> v4mapped
| `ALL -> all
| `ADDRCONFIG -> addrconfig
end
type t = {
family : Sockaddr.Address_family.t;
socktype : Sockaddr.Socket_type.t;
protocol : int;
addr : Sockaddr.t;
canonname : string option;
}
end
module Name_info =
struct
module Request =
struct
type t = [ `Name_info ] Request.t
let make () =
Request.allocate C.Types.DNS.Name_info.t
end
module Flag =
struct
type t = [
| `NAMEREQD
| `DGRAM
| `NOFQDN
| `NUMERICHOST
| `NUMERICSERV
]
let to_c = let open C.Types.DNS.Name_info.Flag in function
| `NAMEREQD -> namereqd
| `DGRAM -> dgram
| `NOFQDN -> nofqdn
| `NUMERICHOST -> numerichost
| `NUMERICSERV -> numericserv
end
end
let rec addrinfo_list_to_ocaml addrinfo =
if Ctypes.is_null addrinfo then
[]
else begin
let module AI = C.Types.DNS.Addr_info in
let addrinfo = Ctypes.(!@) addrinfo in
let family =
Sockaddr.Address_family.from_c (Ctypes.getf addrinfo AI.family) in
let socktype =
Sockaddr.Socket_type.from_c (Ctypes.getf addrinfo AI.socktype) in
let addr =
Sockaddr.copy_sockaddr
(Ctypes.getf addrinfo AI.addrlen) (Ctypes.getf addrinfo AI.addr)
in
let ocaml_addrinfo = {
Addr_info.family;
socktype;
protocol = Ctypes.getf addrinfo AI.protocol;
addr;
canonname = Ctypes.getf addrinfo AI.canonname;
}
in
let next = Ctypes.getf addrinfo AI.next in
ocaml_addrinfo::(addrinfo_list_to_ocaml next)
end
module Async =
struct
let getaddrinfo_trampoline =
C.Functions.DNS.Addr_info.get_trampoline ()
let getaddrinfo
?loop
?(request = Addr_info.Request.make ())
?family
?socktype
?protocol
?flags
?node
?service
()
callback =
let loop = Loop.or_default loop in
let hints =
let module AI = C.Types.DNS.Addr_info in
match family, socktype, protocol, flags with
| None, None, None, None ->
Ctypes.(from_voidp AI.t null)
| _ ->
let hints = Ctypes.make AI.t in
let family =
match family with
| Some family -> family
| None -> `UNSPEC
in
let family = Sockaddr.Address_family.to_c family in
Ctypes.setf hints AI.family family;
begin match socktype with
| Some socktype ->
let socktype = Sockaddr.Socket_type.to_c socktype in
Ctypes.setf hints AI.socktype socktype
| None -> ()
end;
begin match protocol with
| Some protocol -> Ctypes.setf hints AI.protocol protocol
| None -> ()
end;
begin match flags with
| Some flags ->
let flags = Helpers.Bit_field.list_to_c Addr_info.Flag.to_c flags in
Ctypes.setf hints AI.flags flags
| None -> ()
end;
Ctypes.addr hints
in
let callback = Error.catch_exceptions callback in
Request.set_callback request begin fun result ->
result
|> Error.to_result_f begin fun () ->
let addrinfos =
Ctypes.(getf (!@ request)) C.Types.DNS.Addr_info.Request.addrinfo in
let result = addrinfo_list_to_ocaml addrinfos in
C.Functions.DNS.Addr_info.free addrinfos;
result
end
|> callback
end;
let immediate_result =
C.Functions.DNS.Addr_info.getaddrinfo
loop request getaddrinfo_trampoline node service hints
in
if immediate_result < 0 then begin
Request.release request;
callback (Error.result_from_c immediate_result)
end
let load_string request field' field_length =
let bigstring =
Ctypes.(bigarray_of_ptr
array1 field_length Bigarray.Char (request |-> field'))
in
let rec find_terminator index =
if Buffer.unsafe_get bigstring index = '\000' then index
else find_terminator (index + 1)
in
Buffer.sub bigstring ~offset:0 ~length:(find_terminator 0)
|> Buffer.to_string
let getnameinfo_trampoline =
C.Functions.DNS.Name_info.get_trampoline ()
let getnameinfo
?loop
?(request = Name_info.Request.make ())
?(flags = [])
address
callback =
let callback = Error.catch_exceptions callback in
Request.set_callback request begin fun result ->
result
|> Error.to_result_f begin fun () ->
let module NI = C.Types.DNS.Name_info in
let host = load_string request NI.host NI.maxhost in
let service = load_string request NI.service NI.maxserv in
(host, service)
end
|> callback
end;
let flags = Helpers.Bit_field.list_to_c Name_info.Flag.to_c flags in
let immediate_result =
C.Functions.DNS.Name_info.getnameinfo
(Loop.or_default loop)
request
getnameinfo_trampoline
(Sockaddr.as_sockaddr address)
flags
in
if immediate_result < 0 then begin
Request.release request;
callback (Error.result_from_c immediate_result)
end
end
include Async
luv-0.5.14/src/DNS.mli 0000664 0000000 0000000 00000005475 14666340476 0014360 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** DNS queries.
See {{:../../../networking.html#querying-dns} {i Querying DNS}} in the user
guide and {{:http://docs.libuv.org/en/v1.x/dns.html} {i DNS utility
functions}} in libuv.
This module exposes two main functions, {!Luv.DNS.getaddrinfo} and
{!Luv.DNS.getnameinfo}. Both take an optional request object. By default,
Luv allocates and manages request objects internally. However, a
user-provided request object allows the user to cancel requests using
{!Luv.Request.cancel}.
See {!Luv.File} for a similar API with more detailed discussion. *)
(** Binds
{{:http://man7.org/linux/man-pages/man3/getaddrinfo.3.html#DESCRIPTION}
[struct addrinfo]} and request objects for {!Luv.DNS.getaddrinfo}. *)
module Addr_info :
sig
module Request :
sig
type t = [ `Addr_info ] Request.t
val make : unit -> t
end
module Flag :
sig
type t = [
| `PASSIVE
| `CANONNAME
| `NUMERICHOST
| `NUMERICSERV
| `V4MAPPED
| `ALL
| `ADDRCONFIG
]
end
type t = {
family : Sockaddr.Address_family.t;
socktype : Sockaddr.Socket_type.t;
protocol : int;
addr : Sockaddr.t;
canonname : string option;
}
end
(** Optional flags and request objects for use with {!Luv.DNS.getnameinfo}. *)
module Name_info :
sig
module Request :
sig
type t = [ `Name_info ] Request.t
val make : unit -> t
end
module Flag :
sig
type t = [
| `NAMEREQD
| `DGRAM
| `NOFQDN
| `NUMERICHOST
| `NUMERICSERV
]
end
end
val getaddrinfo :
?loop:Loop.t ->
?request:Addr_info.Request.t ->
?family:Sockaddr.Address_family.t ->
?socktype:Sockaddr.Socket_type.t ->
?protocol:int ->
?flags:Addr_info.Flag.t list ->
?node:string ->
?service:string ->
unit ->
((Addr_info.t list, Error.t) result -> unit) ->
unit
(** Retrieves addresses.
Binds {{:http://docs.libuv.org/en/v1.x/dns.html#c.uv_getaddrinfo}
[uv_getaddrinfo]}. See
{{:http://man7.org/linux/man-pages/man3/getaddrinfo.3.html}
[getaddrinfo(3)]}.
[uv_getaddrinfo] and [getaddrinfo(3)] take optional hints in fields of an
argument of type [struct addrinfo]. {!Luv.DNS.getaddrinfo} instead has
several optional arguments, each named after one of the fields of
[hints]. *)
val getnameinfo :
?loop:Loop.t ->
?request:Name_info.Request.t ->
?flags:Name_info.Flag.t list ->
Sockaddr.t ->
((string * string, Error.t) result -> unit) ->
unit
(** Retrieves host names.
Binds {{:http://docs.libuv.org/en/v1.x/dns.html#c.uv_getnameinfo}
[uv_getnameinfo]}. See
{{:http://man7.org/linux/man-pages/man3/getnameinfo.3.html}
[getnameinfo(3)]}. *)
luv-0.5.14/src/FS_event.ml 0000664 0000000 0000000 00000003015 14666340476 0015260 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = [ `FS_event ] Handle.t
module Event =
struct
type t = [
| `RENAME
| `CHANGE
]
let to_c = let open C.Types.FS_event.Event in function
| `RENAME -> rename
| `CHANGE -> change
let all = [
`RENAME;
`CHANGE;
]
end
let init ?loop () =
let event = Handle.allocate C.Types.FS_event.t in
C.Functions.FS_event.init (Loop.or_default loop) event
|> Error.to_result event
let trampoline =
C.Functions.FS_event.get_trampoline ()
let start
?(watch_entry = false)
?(stat = false)
?(recursive = false)
event
path
callback =
let flags =
let accumulate = Helpers.Bit_field.accumulate in
0
|> accumulate C.Types.FS_event.Flag.watch_entry watch_entry
|> accumulate C.Types.FS_event.Flag.stat stat
|> accumulate C.Types.FS_event.Flag.recursive recursive
in
Handle.set_reference event begin fun filename events result ->
let result =
Error.to_result_f (fun () ->
filename, Helpers.Bit_field.c_to_list Event.to_c Event.all events)
result
in
Error.catch_exceptions callback result
end;
let immediate_result =
C.Functions.FS_event.start
event trampoline (Ctypes.ocaml_string_start path) flags
in
if immediate_result < 0 then
callback (Error.result_from_c immediate_result)
let stop event =
C.Functions.FS_event.stop event
|> Error.to_result ()
luv-0.5.14/src/FS_event.mli 0000664 0000000 0000000 00000004042 14666340476 0015432 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Filesystem events.
See {{:../../../filesystem.html#file-change-events} {i File change events}}
in the user guide and {{:http://docs.libuv.org/en/v1.x/fs_event.html}
[uv_fs_event_t] {i — FS Event handle}} in libuv. *)
type t = [ `FS_event ] Handle.t
(** Binds {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_t}
[uv_fs_event_t]}.
Note that values of this type can be passed to functions in {!Luv.Handle},
in addition to the functions in this module. In particular, see
{!Luv.Handle.close}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event}
[uv_fs_event]}. *)
module Event :
sig
type t = [
| `RENAME
| `CHANGE
]
end
val init : ?loop:Loop.t -> unit -> (t, Error.t) result
(** Allocates and initializes an FS event handle.
Binds {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_init}
[uv_fs_event_init]}.
The handle should be cleaned up with {!Luv.Handle.close} when no longer
needed. *)
val start :
?watch_entry:bool ->
?stat:bool ->
?recursive:bool ->
t ->
string ->
((string option * (Event.t list), Error.t) result -> unit) ->
unit
(** Starts the handle and watches the given path for changes.
Binds {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_start}
[uv_fs_event_start]}.
[uv_fs_event_start] takes a [flags] argument of type
{{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_flags}
[uv_fs_event_flags]}. {!Luv.FS_event.start} instead takes several optional
arguments, each named after one of the flags.
See {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_cb}
[uv_fs_event_cb]} for a description of the values passed to the callback. *)
val stop : t -> (unit, Error.t) result
(** Stops the handle.
Binds {{:http://docs.libuv.org/en/v1.x/fs_event.html#c.uv_fs_event_stop}
[uv_fs_event_stop]}. *)
luv-0.5.14/src/FS_poll.ml 0000664 0000000 0000000 00000002206 14666340476 0015106 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = [ `FS_poll ] Handle.t
let init ?loop () =
let poll = Handle.allocate C.Types.FS_poll.t in
C.Functions.FS_poll.init (Loop.or_default loop) poll
|> Error.to_result poll
let stat_ptr_to_ocaml pointer =
pointer
|> Ctypes.ptr_of_raw_address
|> Ctypes.from_voidp C.Types.File.Stat.t
|> Ctypes.(!@)
|> File.Stat.load
let trampoline =
C.Functions.FS_poll.get_trampoline ()
let start ?(interval = 2000) poll path callback =
let callback = Error.catch_exceptions callback in
Handle.set_reference poll begin fun result previous_stat current_stat ->
result
|> Error.to_result_f (fun () ->
(stat_ptr_to_ocaml previous_stat, stat_ptr_to_ocaml current_stat))
|> callback
end;
let immediate_result =
C.Functions.FS_poll.start
poll trampoline (Ctypes.ocaml_string_start path) interval
in
if immediate_result < 0 then
callback (Error.result_from_c immediate_result)
let stop poll =
C.Functions.FS_poll.stop poll
|> Error.to_result ()
luv-0.5.14/src/FS_poll.mli 0000664 0000000 0000000 00000003027 14666340476 0015261 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Filesystem polling.
See {{:http://docs.libuv.org/en/v1.x/fs_poll.html} [uv_fs_poll_t] {i — FS
Poll handle}} in libuv. *)
type t = [ `FS_poll ] Handle.t
(** Binds {{:http://docs.libuv.org/en/v1.x/fs_poll.html#c.uv_fs_poll_t}
[uv_fs_poll_t]}.
Note that values of this type can be passed to functions in {!Luv.Handle},
in addition to the functions in this module. In particular, see
{!Luv.Handle.close}. *)
val init : ?loop:Loop.t -> unit -> (t, Error.t) result
(** Allocates and initializes an FS polling handle.
Binds {{:http://docs.libuv.org/en/v1.x/fs_poll.html#c.uv_fs_poll_init}
[uv_fs_poll_init]}.
The handle should be cleaned up with {!Luv.Handle.close} when no longer
needed. *)
val start :
?interval:int ->
t ->
string ->
((File.Stat.t * File.Stat.t, Error.t) result -> unit) ->
unit
(** Starts the handle and polls the given path for changes.
Binds {{:http://docs.libuv.org/en/v1.x/fs_poll.html#c.uv_fs_poll_start}
[uv_fs_poll_start]}.
The default value of [?interval] is 2000 (milliseconds).
See {{:http://docs.libuv.org/en/v1.x/fs_poll.html#c.uv_fs_poll_cb}
[uv_fs_poll_cb]} for a description of the values passed to the callback. *)
val stop : t -> (unit, Error.t) result
(** Stops the handle.
Binds {{:http://docs.libuv.org/en/v1.x/fs_poll.html#c.uv_fs_poll_stop}
[uv_fs_poll_stop]}. *)
luv-0.5.14/src/TCP.ml 0000664 0000000 0000000 00000005753 14666340476 0014210 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = [ `TCP ] Stream.t
let init ?loop ?domain () =
let tcp = Stream.allocate C.Types.TCP.t in
let loop = Loop.or_default loop in
let result =
match domain with
| None ->
C.Functions.TCP.init loop tcp
| Some domain ->
let domain = Sockaddr.Address_family.to_c domain in
C.Functions.TCP.init_ex loop tcp (Unsigned.UInt.of_int domain)
in
Error.to_result tcp result
let open_ tcp socket =
C.Functions.TCP.open_ tcp socket
|> Error.to_result ()
module Flag =
struct
type t = [
`NONBLOCK
]
end
let socketpair
?(fst_flags = [`NONBLOCK]) ?(snd_flags = [`NONBLOCK]) type_ protocol =
let convert_flags = function
| [] -> 0
| _ -> C.Types.Process.Redirection.overlapped_pipe
in
let sockets = Ctypes.allocate_n C.Types.Os_socket.t ~count:2 in
C.Functions.TCP.socketpair
(Sockaddr.Socket_type.to_c type_)
protocol
sockets
(convert_flags fst_flags)
(convert_flags snd_flags)
|> Error.to_result_f Ctypes.(fun () ->
!@ sockets, !@ (sockets +@ 1))
let nodelay tcp enable =
C.Functions.TCP.nodelay tcp enable
|> Error.to_result ()
let keepalive tcp maybe =
begin match maybe with
| None ->
C.Functions.TCP.keepalive tcp false 0
| Some seconds ->
C.Functions.TCP.keepalive tcp true seconds
end
|> Error.to_result ()
let simultaneous_accepts tcp enable =
C.Functions.TCP.simultaneous_accepts tcp enable
|> Error.to_result ()
let bind ?(ipv6only = false) tcp address =
let flags = if ipv6only then C.Types.TCP.ipv6only else 0 in
C.Functions.TCP.bind tcp (Sockaddr.as_sockaddr address) flags
|> Error.to_result ()
let getsockname =
Sockaddr.wrap_c_getter C.Functions.TCP.getsockname
let getpeername =
Sockaddr.wrap_c_getter C.Functions.TCP.getpeername
let connect tcp address callback =
let request = Stream.Connect_request.make () in
let wrapped_callback result =
Error.catch_exceptions callback (Error.to_result () result)
in
Request.set_callback request wrapped_callback;
let immediate_result =
C.Functions.TCP.connect
request
tcp
(Sockaddr.as_sockaddr address)
Stream.Connect_request.trampoline
in
if immediate_result < 0 then begin
Request.release request;
callback (Error.result_from_c immediate_result)
end
(* This code closely follows the implementation of close in handle.ml. *)
let close_trampoline =
C.Functions.Handle.get_close_trampoline ()
let close_reset tcp callback =
if Handle.is_closing tcp then
callback (Ok ())
else begin
Handle.set_reference
~index:C.Types.Handle.close_callback_index
tcp
(fun () ->
Handle.release tcp;
Error.catch_exceptions callback (Ok ()));
let immediate_result = C.Functions.TCP.close_reset tcp close_trampoline in
if immediate_result < 0 then
callback (Error.result_from_c immediate_result)
end
luv-0.5.14/src/TCP.mli 0000664 0000000 0000000 00000010141 14666340476 0014344 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** TCP sockets.
See {{:../../../networking.html#tcp} {i TCP}} in the user guide and
{{:http://docs.libuv.org/en/v1.x/tcp.html} [uv_tcp_t] {i — TCP handle}} in
libuv. *)
type t = [ `TCP ] Stream.t
(** Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_t} [uv_tcp_t]}.
Note that values of this type can also be used with functions in:
- {!Luv.Stream}
- {!Luv.Handle}
In particular, see {!Luv.Handle.close}, {!Luv.Stream.accept},
{!Luv.Stream.read_start}, {!Luv.Stream.write}. *)
val init :
?loop:Loop.t -> ?domain:Sockaddr.Address_family.t -> unit ->
(t, Error.t) result
(** Allocates and initializes a TCP stream.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_init_ex}
[uv_tcp_init_ex]}.
The stream is not yet connected or listening. See {!Luv.TCP.bind},
{!Luv.Stream.listen}, and {!Luv.TCP.connect}.
On libuv prior to 1.7.0, using [?domain] causes this function to return
[Error `ENOSYS] ("Function not implemented").
{{!Luv.Require} Feature check}: [Luv.Require.(has tcp_init_ex)] *)
val open_ : t -> Os_fd.Socket.t -> (unit, Error.t) result
(** Wraps an existing socket in a libuv TCP stream.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_open}
[uv_tcp_open]}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/pipe.html#c.uv_pipe}
[UV_NONBLOCK_PIPE]}. *)
module Flag :
sig
type t = [
| `NONBLOCK
]
end
val socketpair :
?fst_flags:Flag.t list ->
?snd_flags:Flag.t list ->
Sockaddr.Socket_type.t ->
int ->
(Os_fd.Socket.t * Os_fd.Socket.t, Error.t) result
(** Creates a pair of connected sockets.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_socketpair}
[uv_socketpair]}. See
{{:https://www.man7.org/linux/man-pages/man3/socketpair.3p.html}
[socketpair(3p)]}.
See {!Luv.Pipe.pipe} for an explanation of the optional arguments.
The integer argument is the protocol number.
Requires Luv 0.5.7 and libuv 1.41.0.
{{!Luv.Require} Feature check}: [Luv.Require.(has socketpair)] *)
val nodelay : t -> bool -> (unit, Error.t) result
(** Sets [TCP_NODELAY].
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_nodelay}
[uv_tcp_nodelay]}. *)
val keepalive : t -> int option -> (unit, Error.t) result
(** Sets the TCP keepalive.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_keepalive}
[uv_tcp_keepalive]}. *)
val simultaneous_accepts : t -> bool -> (unit, Error.t) result
(** Sets simultaneous accept.
Binds
{{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_simultaneous_accepts}
[uv_tcp_simultaneous_accepts]}. *)
val bind : ?ipv6only:bool -> t -> Sockaddr.t -> (unit, Error.t) result
(** Assigns an address to the given TCP socket.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_bind}
[uv_tcp_bind]}. See {{:http://man7.org/linux/man-pages/man3/bind.3p.html}
[bind(3p)]}. *)
val getsockname : t -> (Sockaddr.t, Error.t) result
(** Retrieves the address assigned to the given TCP socket.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_getsockname}
[uv_tcp_getsockname]}. See
{{:http://man7.org/linux/man-pages/man3/getsockname.3p.html}
[getsockname(3p)]}. *)
val getpeername : t -> (Sockaddr.t, Error.t) result
(** Retrieves the address of the given TCP socket's peer.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_getpeername}
[uv_tcp_getpeername]}. See
{{:http://man7.org/linux/man-pages/man3/getpeername.3p.html}
[getpeername(3p)]}. *)
val connect : t -> Sockaddr.t -> ((unit, Error.t) result -> unit) -> unit
(** Connects to a host.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_connect}
[uv_tcp_connect]}. See
{{:http://man7.org/linux/man-pages/man3/connect.3p.html} [connect(3p)]}. *)
val close_reset : t -> ((unit, Error.t) result -> unit) -> unit
(** Resets the connection.
Binds {{:http://docs.libuv.org/en/v1.x/tcp.html#c.uv_tcp_close_reset}
[uv_tcp_close_reset]}. *)
luv-0.5.14/src/TLS.ml 0000664 0000000 0000000 00000000777 14666340476 0014225 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = C.Types.TLS.t Ctypes.ptr
let create () =
let key = Ctypes.addr (Ctypes.make C.Types.TLS.t) in
C.Functions.TLS.create key
|> Error.to_result key
let delete =
C.Functions.TLS.delete
let get key =
Ctypes.raw_address_of_ptr (C.Functions.TLS.get key)
let set key value =
C.Functions.TLS.set key (Ctypes.ptr_of_raw_address value)
luv-0.5.14/src/TLS.mli 0000664 0000000 0000000 00000004407 14666340476 0014370 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Thread-local storage.
See {{:http://docs.libuv.org/en/v1.x/threading.html#thread-local-storage}
{i Thread-local storage}} in libuv.
The interface is currently written in terms of [nativeint], the type of
pointer-sized raw values. You can store OCaml values in TLS by manipulating
and registering them with the GC using
{{:https://github.com/ocamllabs/ocaml-ctypes/blob/1e1429fe249778f0c4db458aa33df5991f2a93ca/src/ctypes/ctypes.mli#L570}
[Ctypes.Root]}. The conversions between [unit ptr] and [nativeint] are
{{:https://github.com/ocamllabs/ocaml-ctypes/blob/1e1429fe249778f0c4db458aa33df5991f2a93ca/src/ctypes/ctypes.mli#L213}
[Ctypes.ptr_of_raw_address]} and
{{:https://github.com/ocamllabs/ocaml-ctypes/blob/1e1429fe249778f0c4db458aa33df5991f2a93ca/src/ctypes/ctypes.mli#L219}
[Ctypes.raw_address_of_ptr]}.
A future version of this API is likely to handle GC roots internally, and be
directly usable with OCaml values. *)
type t
(** Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_key_t}
[uv_key_t]}. *)
val create : unit -> (t, Error.t) result
(** Creates a TLS key.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_key_create}
[uv_key_create]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_key_create.3p.html}
[pthread_key_create(3p)]}. *)
val delete : t -> unit
(** Deletes a TLS key.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_key_delete}
[uv_key_delete]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_key_delete.3p.html}
[pthread_key_delete(3p)]}. *)
val get : t -> nativeint
(** Retrieves the value at a TLS key.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_key_get}
[uv_key_get]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_getspecific.3p.html}
[pthread_getspecific(3p)]}. *)
val set : t -> nativeint -> unit
(** Sets the value at a TLS key.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_key_set}
[uv_key_set]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_setspecific.3p.html}
[pthread_setspecific(3p)]}. *)
luv-0.5.14/src/TTY.ml 0000664 0000000 0000000 00000002040 14666340476 0014224 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
module Mode = C.Types.TTY.Mode
type t = [ `TTY ] Stream.t
let init ?loop file =
let tty = Stream.allocate C.Types.TTY.t in
C.Functions.TTY.init (Loop.or_default loop) tty (File.to_int file) 0
|> Error.to_result tty
let set_mode tty mode =
C.Functions.TTY.set_mode tty mode
|> Error.to_result ()
let reset_mode () =
C.Functions.TTY.reset_mode ()
|> Error.to_result ()
let get_winsize tty =
let width = Ctypes.(allocate int) 0 in
let height = Ctypes.(allocate int) 0 in
C.Functions.TTY.get_winsize tty width height
|> Error.to_result_f (fun () -> Ctypes.(!@ width, !@ height))
module Vterm_state = C.Types.TTY.Vterm_state
let set_vterm_state =
C.Functions.TTY.set_vterm_state
let get_vterm_state () =
let state = Ctypes.allocate_n C.Types.TTY.Vterm_state.t ~count:1 in
C.Functions.TTY.get_vterm_state state
|> Error.to_result_f (fun () -> Ctypes.(!@) state)
luv-0.5.14/src/TTY.mli 0000664 0000000 0000000 00000004257 14666340476 0014411 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Consoles.
See {{:http://docs.libuv.org/en/v1.x/tty.html} [uv_tty_t] {i — TTY
handle}} in libuv. *)
type t = [ `TTY ] Stream.t
(** Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_t}}.
Note that values of this type can also be used with functions in:
- {!Luv.Stream}
- {!Luv.Handle}
In particular, see {!Luv.Handle.close}, {!Luv.Stream.read_start}, and
{!Luv.Stream.write}. *)
val init : ?loop:Loop.t -> File.t -> (t, Error.t) result
(** Allocates and initializes a TTY handle.
Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_init}
[uv_tty_init]}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_mode_t}
[uv_tty_mode_t]}. *)
module Mode :
sig
type t = [
| `NORMAL
| `RAW
| `IO
]
end
val set_mode : t -> Mode.t -> (unit, Error.t) result
(** Sets the TTY's mode.
Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_set_mode}
[uv_tty_set_mode]}. *)
val reset_mode : unit -> (unit, Error.t) result
(** Resets the TTY's mode.
Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_reset_mode}
[uv_tty_reset_mode]}. *)
val get_winsize : t -> (int * int, Error.t) result
(** Retrieves the current window size.
Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_get_winsize}
[uv_tty_get_winsize]}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_vtermstate_t}
[uv_tty_vtermstate_t]}. *)
module Vterm_state :
sig
type t = [
| `SUPPORTED
| `UNSUPPORTED
]
end
val set_vterm_state : Vterm_state.t -> unit
(** Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_set_vterm_state}
[uv_tty_set_vterm_state]}.
Requires libuv 1.33.0.
{{!Luv.Require} Feature check}: [Luv.Require.(has tty_vterm_state)] *)
val get_vterm_state : unit -> (Vterm_state.t, Error.t) result
(** Binds {{:http://docs.libuv.org/en/v1.x/tty.html#c.uv_tty_get_vterm_state}
[uv_tty_get_vterm_state]}.
Requires libuv 1.33.0.
{{!Luv.Require} Feature check}: [Luv.Require.(has tty_vterm_state)] *)
luv-0.5.14/src/UDP.ml 0000664 0000000 0000000 00000014647 14666340476 0014214 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = [ `UDP ] Handle.t
module Membership = C.Types.UDP.Membership
let init ?loop ?(domain = `UNSPEC) ?(recvmmsg = false) () =
let udp =
Handle.allocate
C.Types.UDP.t ~reference_count:C.Types.UDP.reference_count
in
let loop = Loop.or_default loop in
let domain = Sockaddr.Address_family.to_c domain in
let recvmmsg = if recvmmsg then C.Types.UDP.Flag.recvmmsg else 0 in
let flags = domain lor recvmmsg in
let result = C.Functions.UDP.init_ex loop udp (Unsigned.UInt.of_int flags) in
Error.to_result udp result
let open_ udp socket =
C.Functions.UDP.open_ udp socket
|> Error.to_result ()
let bind ?(ipv6only = false) ?(reuseaddr = false) udp address =
let flags =
let accumulate = Helpers.Bit_field.accumulate in
0
|> accumulate C.Types.UDP.Flag.ipv6only ipv6only
|> accumulate C.Types.UDP.Flag.reuseaddr reuseaddr
in
C.Functions.UDP.bind udp (Sockaddr.as_sockaddr address) flags
|> Error.to_result ()
let getsockname =
Sockaddr.wrap_c_getter C.Functions.UDP.getsockname
let set_membership udp ~group ~interface membership =
C.Functions.UDP.set_membership
udp
(Ctypes.ocaml_string_start group)
(Ctypes.ocaml_string_start interface)
membership
|> Error.to_result ()
let set_source_membership udp ~group ~interface ~source membership =
C.Functions.UDP.set_source_membership
udp
(Ctypes.ocaml_string_start group)
(Ctypes.ocaml_string_start interface)
(Ctypes.ocaml_string_start source)
membership
|> Error.to_result ()
let set_multicast_loop udp on =
C.Functions.UDP.set_multicast_loop udp on
|> Error.to_result ()
let set_multicast_ttl udp ttl =
C.Functions.UDP.set_multicast_ttl udp ttl
|> Error.to_result ()
let set_multicast_interface udp interface =
C.Functions.UDP.set_multicast_interface
udp (Ctypes.ocaml_string_start interface)
|> Error.to_result ()
let set_broadcast udp on =
C.Functions.UDP.set_broadcast udp on
|> Error.to_result ()
let set_ttl udp ttl =
C.Functions.UDP.set_ttl udp ttl
|> Error.to_result ()
let send_trampoline =
C.Functions.UDP.Send_request.get_trampoline ()
let send_general udp buffers address callback =
let count = List.length buffers in
let iovecs = Helpers.Buf.bigstrings_to_iovecs buffers count in
let request = Request.allocate C.Types.UDP.Send_request.t in
Request.set_callback request begin fun result ->
let module Sys = Compatibility.Sys in
ignore (Sys.opaque_identity buffers);
ignore (Sys.opaque_identity iovecs);
Error.catch_exceptions callback (Error.to_result () result)
end;
let immediate_result =
C.Functions.UDP.send
request
udp
(Ctypes.CArray.start iovecs)
(Unsigned.UInt.of_int count)
address
send_trampoline
in
if immediate_result < 0 then begin
Request.release request;
callback (Error.result_from_c immediate_result)
end
let send udp buffers address callback =
send_general udp buffers (Sockaddr.as_sockaddr address) callback
let try_send_general udp buffers address =
let count = List.length buffers in
let iovecs = Helpers.Buf.bigstrings_to_iovecs buffers count in
let result =
C.Functions.UDP.try_send
udp
(Ctypes.CArray.start iovecs)
(Unsigned.UInt.of_int count)
address
in
let module Sys = Compatibility.Sys in
ignore (Sys.opaque_identity buffers);
ignore (Sys.opaque_identity iovecs);
Error.to_result () result
let try_send udp buffers address =
try_send_general udp buffers (Sockaddr.as_sockaddr address)
module Recv_flag =
struct
type t = [
| `PARTIAL
| `MMSG_CHUNK
| `MMSG_FREE
]
end
let alloc_trampoline =
C.Functions.Handle.get_alloc_trampoline ()
let recv_trampoline =
C.Functions.UDP.get_recv_trampoline ()
let recv_start ?(allocate = Buffer.create) udp callback =
let last_allocated_buffer = ref None in
Handle.set_reference udp begin fun nread_or_error sockaddr flags ->
let maybe_buffer = !last_allocated_buffer in
last_allocated_buffer := None;
if nread_or_error < 0 then
callback (Error.result_from_c nread_or_error)
else begin
let length = nread_or_error in
let buffer =
match maybe_buffer with
| Some buffer -> buffer
| None -> assert false
in
let buffer =
if Buffer.size buffer <= length then
buffer
else
Buffer.sub buffer ~offset:0 ~length
in
let sockaddr =
if sockaddr = Nativeint.zero then
None
else
sockaddr
|> Ctypes.ptr_of_raw_address
|> Ctypes.from_voidp C.Types.Sockaddr.storage
|> Sockaddr.copy_storage
|> fun sockaddr -> Some sockaddr
in
let convert_flag raw converted flag_list =
if flags land raw = 0 then
flag_list
else
converted::flag_list
in
let flags =
[]
|> convert_flag C.Types.UDP.Flag.partial `PARTIAL
|> convert_flag C.Types.UDP.Flag.mmsg_chunk `MMSG_CHUNK
|> convert_flag C.Types.UDP.Flag.mmsg_free `MMSG_FREE
in
Error.catch_exceptions callback (Ok (buffer, sockaddr, flags))
end
end;
Handle.set_reference udp ~index:C.Types.UDP.allocate_callback_index
begin fun suggested_size ->
let buffer = allocate suggested_size in
last_allocated_buffer := Some buffer;
buffer
end;
let immediate_result =
C.Functions.UDP.recv_start udp alloc_trampoline recv_trampoline in
if immediate_result < 0 then
callback (Error.result_from_c immediate_result)
let recv_stop udp =
C.Functions.UDP.recv_stop udp
|> Error.to_result ()
let using_recvmmsg =
C.Functions.UDP.using_recvmmsg
let get_send_queue_size udp =
C.Functions.UDP.get_send_queue_size udp
|> Unsigned.Size_t.to_int
let get_send_queue_count udp =
C.Functions.UDP.get_send_queue_count udp
|> Unsigned.Size_t.to_int
module Connected =
struct
let connect udp address =
C.Functions.UDP.connect udp (Sockaddr.as_sockaddr address)
|> Error.to_result ()
let disconnect udp =
C.Functions.UDP.connect udp Sockaddr.null
|> Error.to_result ()
let getpeername = Sockaddr.wrap_c_getter C.Functions.UDP.getpeername
let send udp buffers callback =
send_general udp buffers Sockaddr.null callback
let try_send udp buffers =
try_send_general udp buffers Sockaddr.null
end
luv-0.5.14/src/UDP.mli 0000664 0000000 0000000 00000022373 14666340476 0014360 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** UDP sockets.
See {{:../../../networking.html#udp} {i UDP}} in the user guide and
{{:http://docs.libuv.org/en/v1.x/udp.html} [uv_udp_t] {i — UDP handle}} in
libuv. *)
type t = [ `UDP ] Handle.t
(** Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_t} [uv_udp_t]}.
Note that values of this type can be passed to functions in {!Luv.Handle},
in addition to the functions in this module. In particular, see
{!Luv.Handle.close}. *)
val init :
?loop:Loop.t -> ?domain:Sockaddr.Address_family.t -> ?recvmmsg:bool -> unit ->
(t, Error.t) result
(** Allocates and initializes a UDP socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_init_ex}
[uv_udp_init_ex]}.
On libuv prior to 1.7.0, using [?domain] causes this function to return
[Error `ENOSYS] ("Function not implemented").
[?recvmmsg] is requires Luv 0.5.2 and libuv 1.37.0. Passing it with earlier
libuv has no effect.
{{!Luv.Require} Feature checks}:
- [Luv.Require.(has udp_init_ex)]
- [Luv.Require.(has udp_recvmmg)] *)
val open_ : t -> Os_fd.Socket.t -> (unit, Error.t) result
(** Wraps an existing socket in a libuv UDP handle.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_open}
[uv_udp_open]}. *)
val bind :
?ipv6only:bool -> ?reuseaddr:bool -> t -> Sockaddr.t ->
(unit, Error.t) result
(** Assigns an address to the given UDP handle.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_bind}
[uv_udp_bind]}. See {{:http://man7.org/linux/man-pages/man3/bind.3p.html}
[bind(3p)]}. *)
val getsockname : t -> (Sockaddr.t, Error.t) result
(** Retrieves the address assigned to the given UDP handle.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_getsockname}
[uv_udp_getsockname]}. See
{{:http://man7.org/linux/man-pages/man3/getsockname.3p.html}
[getsockname(3p)]}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_membership}
[uv_membership]}. *)
module Membership :
sig
type t = [
| `LEAVE_GROUP
| `JOIN_GROUP
]
end
val set_membership :
t -> group:string -> interface:string -> Membership.t ->
(unit, Error.t) result
(** Sets multicast group membership.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_membership}
[uv_udp_set_membership]}. *)
val set_source_membership :
t -> group:string -> interface:string -> source:string -> Membership.t ->
(unit, Error.t) result
(** Sets source-specific multicast group membership.
Binds
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_source_membership}
[uv_udp_set_source_membership]}.
Requires libuv 1.32.0.
{{!Luv.Require} Feature check}:
[Luv.Require.(has udp_set_source_membership)] *)
val set_multicast_loop : t -> bool -> (unit, Error.t) result
(** Sets multicast loopback.
Binds
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_multicast_loop}
[uv_udp_set_multicast_loop]}. *)
val set_multicast_ttl : t -> int -> (unit, Error.t) result
(** Sets the multicast TTL.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_multicast_ttl}
[uv_udp_set_multicast_ttl]}. *)
val set_multicast_interface : t -> string -> (unit, Error.t) result
(** Sets the interface to be used for multicast.
Binds
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_multicast_interface}
[uv_udp_set_multicast_interface]}. *)
val set_broadcast : t -> bool -> (unit, Error.t) result
(** Sets broadcast.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_broadcast}
[uv_udp_set_broadcast]}. *)
val set_ttl : t -> int -> (unit, Error.t) result
(** Sets the TTL.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_set_ttl}
[uv_udp_set_ttl]}. *)
val send :
t ->
Buffer.t list ->
Sockaddr.t ->
((unit, Error.t) result -> unit) ->
unit
(** Sends a datagram.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_send}
[uv_udp_send]}. See {{:http://man7.org/linux/man-pages/man3/send.3p.html}
[send(3p)]}.
For connected UDP sockets, see {!Luv.UDP.Connected.send}. *)
val try_send : t -> Buffer.t list -> Sockaddr.t -> (unit, Error.t) result
(** Like {!Luv.UDP.send}, but only attempts to send the datagram immediately.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_try_send}
[uv_udp_try_send]}.
For connected UDP sockets, see {!Luv.UDP.Connected.try_send}. *)
(** Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_flags}
[uv_udp_flags]}. *)
module Recv_flag :
sig
type t = [
| `PARTIAL
| `MMSG_CHUNK
| `MMSG_FREE
]
(** [`MMSG_CHUNK] occurs since Luv 0.5.1 and libuv 1.35.0.
[`MMSG_FREE] occurs since Luv 0.5.6 and libuv 1.40.0.
{{!Luv.Require} Feature checks}:
- [Luv.Require.(has mmsg_chunk)]
- [Luv.Require.(has mmsg_free)] *)
end
val recv_start :
?allocate:(int -> Buffer.t) ->
t ->
((Buffer.t * Sockaddr.t option * Recv_flag.t list, Error.t) result -> unit) ->
unit
(** Calls its callback whenever a datagram is received on the UDP socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_recv_start}
[uv_udp_recv_start]}. See
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_recv_cb}
[uv_udp_recv_cb]} and {{:http://man7.org/linux/man-pages/man3/recv.3p.html}
[recv(3p)]}.
The behavior is similar to {!Luv.Stream.read_start}. See that function for
the meaning of the [?allocate] callback.
The main callback takes a [Sockaddr.t option]. This is usually [Some
sender_address], carrying the address of the peer. [None] usually indicates
[EAGAIN] in libuv; libuv still calls the callback, in order to give the C
user a chance to deallocate the data buffer. Since this is not usually an
issue in OCaml, it is usually safe to simply ignore calls to the callback
with sender address [None].
The buffer can be empty ([Luv.Buffer.size buffer = 0]). This indicates an
empty datagram.
Since UDP is connectionless, there is no EOF, and no means to indicate it.
The [Recv_flag.t list] callback argument can contain [`PARTIAL], which
indicates that the buffer allocated was too small for the datagram, a prefix
of the data was received, and the rest of the datagram was dropped.
In summary, the important possible combinations of callback arguments are:
- [Error _]: “true” error that should be handled, reported, etc.
- [Ok (_, None, _)]: [EAGAIN] inside libuv. Should typically be ignored.
- [Ok (buffer, Some peer, flags)]: datagram received. In this case, there
are additional possibilities:
{ul
{- [Luv.Buffer.size buffer = 0]: the datagram is empty, because an empty
datagram was sent.}
{- [List.mem `PARTIAL flags = true]: the read was partial, because the
buffer was too small for the datagram.}} *)
val recv_stop : t -> (unit, Error.t) result
(** Stops the callback provided to {!Luv.UDP.recv_start}.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_recv_stop}
[uv_udp_recv_stop]}. *)
val using_recvmmsg : t -> bool
(** Evaluates to [true] if and only if the given handle was created with
[~recvmmsg:true] and the platform supports
{{:https://www.man7.org/linux/man-pages/man2/recvmmsg.2.html}
[recvmmsg(2)]}.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_using_recvmmsg}
[uv_udp_using_recvmmsg]}.
Requires Luv 0.5.5 and libuv 1.39.0.
{{!Luv.Require} Feature check}: [Luv.Require.(has udp_using_recvmmsg)] *)
val get_send_queue_size : t -> int
(** Binds
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_get_send_queue_size}
[uv_udp_get_send_queue_size]}. *)
val get_send_queue_count : t -> int
(** Binds
{{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_get_send_queue_count}
[uv_udp_get_send_queue_count]}. *)
(** Connected UDP sockets.
This module requires libuv 1.27.0 or higher.
{{!Luv.Require} Feature check}: [Luv.Require.(has udp_connect)] *)
module Connected :
sig
val connect : t -> Sockaddr.t -> (unit, Error.t) result
(** Assigns a peer address to the given socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_connect}
[uv_udp_connect]}. *)
val disconnect : t -> (unit, Error.t) result
(** Removes the peer address assigned to the given socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_connect}
[uv_udp_connect]} with [NULL] argument. *)
val getpeername : t -> (Sockaddr.t, Error.t) result
(** Retrieves the peer address assigned to the given socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_getpeername}
[uv_udp_getpeername]}. *)
val send : t -> Buffer.t list -> ((unit, Error.t) result -> unit) -> unit
(** Like {!Luv.UDP.send}, but the remote address used is the peer address
assigned to the socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_send}
[uv_udp_send]}. *)
val try_send : t -> Buffer.t list -> (unit, Error.t) result
(** Like {!Luv.UDP.try_send}, but the remote address used is the peer address
assigned to the socket.
Binds {{:http://docs.libuv.org/en/v1.x/udp.html#c.uv_udp_try_send}
[uv_udp_try_send]}. *)
end
luv-0.5.14/src/async.ml 0000664 0000000 0000000 00000001125 14666340476 0014664 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = [ `Async ] Handle.t
let trampoline =
C.Functions.Async.get_trampoline ()
let init ?loop callback =
let async = Handle.allocate C.Types.Async.t in
let callback = fun () -> callback async in
Handle.set_reference async (Error.catch_exceptions callback);
C.Functions.Async.init (Loop.or_default loop) async trampoline
|> Error.to_result async
let send async =
C.Functions.Async.send async
|> Error.to_result ()
luv-0.5.14/src/async.mli 0000664 0000000 0000000 00000002266 14666340476 0015044 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Inter-loop communication.
See {{:../../../threads.html#inter-thread-communication} {i Inter-thread
communication}} in the user guide and
{{:http://docs.libuv.org/en/v1.x/async.html} [uv_async_t] {i — Async
handle}} in libuv. *)
type t = [ `Async ] Handle.t
(** Binds {{:http://docs.libuv.org/en/v1.x/async.html#c.uv_async_t}
[uv_async_t]}.
Note that values of this type can be passed to functions in {!Luv.Handle},
in addition to the functions in this module. In particular, see
{!Luv.Handle.close}. *)
val init : ?loop:Loop.t -> (t -> unit) -> (t, Error.t) result
(** Allocates and initializes an async handle.
Binds {{:http://docs.libuv.org/en/v1.x/async.html#c.uv_async_init}
[uv_async_init]}.
The handle should be cleaned up with {!Luv.Handle.close} when no longer
needed. *)
val send : t -> (unit, Error.t) result
(** Triggers a call to the handle's callback by the handle's loop.
Binds {{:http://docs.libuv.org/en/v1.x/async.html#c.uv_async_send}
[uv_async_send]}. *)
luv-0.5.14/src/barrier.ml 0000664 0000000 0000000 00000000711 14666340476 0015175 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
type t = C.Types.Barrier.t Ctypes.ptr
let init count =
let barrier = Ctypes.addr (Ctypes.make C.Types.Barrier.t) in
C.Functions.Barrier.init barrier (Unsigned.UInt.of_int count)
|> Error.to_result barrier
let destroy =
C.Functions.Barrier.destroy
let wait =
C.Blocking.Barrier.wait
luv-0.5.14/src/barrier.mli 0000664 0000000 0000000 00000002304 14666340476 0015346 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Barriers.
See {{:http://docs.libuv.org/en/v1.x/threading.html#barriers}
{i Barriers}} in libuv. *)
type t
(** Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_barrier_t}
[uv_barrier_t]}. *)
val init : int -> (t, Error.t) result
(** Allocates and initializes a barrier.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_barrier_init}
[uv_barrier_init]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_barrier_init.3p.html}
[pthread_barrier_init(3p)]}. *)
val destroy : t -> unit
(** Cleans up a barrier.
Binds
{{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_barrier_destroy}
[uv_barrier_destroy]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_barrier_destroy.3p.html}
[pthread_barrier_destroy(3p)]}. *)
val wait : t -> bool
(** Waits on a barrier.
Binds {{:http://docs.libuv.org/en/v1.x/threading.html#c.uv_barrier_wait}
[uv_barrier_wait]}. See
{{:http://man7.org/linux/man-pages/man3/pthread_barrier_wait.3p.html}
[pthread_barrier_wait(3p)]}. *)
luv-0.5.14/src/buffer.ml 0000664 0000000 0000000 00000003763 14666340476 0015032 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
module Array1 = Bigarray.Array1
type t = (char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Array1.t
let create =
Bigarray.(Array1.create Char C_layout)
let size =
Array1.dim
let get =
Array1.get
let set =
Array1.set
let sub buffer ~offset ~length =
Array1.sub buffer offset length
let blit ~source ~destination =
Array1.blit source destination
let fill =
Array1.fill
let unsafe_get =
Array1.unsafe_get
let unsafe_set =
Array1.unsafe_set
let blit_to_bytes bigstring bytes ~destination_offset =
C.Functions.Bigstring.memcpy_to_bytes
Ctypes.(ocaml_bytes_start bytes +@ destination_offset)
Ctypes.(bigarray_start array1 bigstring)
(size bigstring)
let blit_from_bytes bigstring bytes ~source_offset =
C.Functions.Bigstring.memcpy_from_bytes
Ctypes.(bigarray_start array1 bigstring)
Ctypes.(ocaml_bytes_start bytes +@ source_offset)
(Bytes.length bytes)
let blit_from_string bigstring string ~source_offset =
blit_from_bytes bigstring (Bytes.unsafe_of_string string) ~source_offset
let to_bytes bigstring =
let bytes = Bytes.create (size bigstring) in
blit_to_bytes bigstring bytes ~destination_offset:0;
bytes
let to_string bigstring =
Bytes.unsafe_to_string (to_bytes bigstring)
let from_bytes bytes =
let bigstring = create (Bytes.length bytes) in
blit_from_bytes bigstring bytes ~source_offset:0;
bigstring
let from_string string =
from_bytes (Bytes.unsafe_of_string string)
let total_size bigstrings =
List.fold_left (fun total bigstring -> total + size bigstring) 0 bigstrings
let rec drop bigstrings count =
if count <= 0 then bigstrings
else
match bigstrings with
| [] -> bigstrings
| first::rest ->
let size = size first in
if count < size then
(sub first ~offset:count ~length:(size - count))::rest
else
drop rest (count - size)
luv-0.5.14/src/buffer.mli 0000664 0000000 0000000 00000007076 14666340476 0015204 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(** Data buffers.
See {{:../../../basics.html#buffers} {i Buffers}} in the user guide. *)
(** {1 Basics} *)
type t = (char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
(** Buffers with C storage.
These are OCaml bigstrings ([char] bigarrays). Roughly speaking, they
correspond to C buffers referenced by pointers of type [char*], but also
know their own size.
In addition to being usable with the functions in this module, the type is
compatible with at least the following libraries:
- {{:https://caml.inria.fr/pub/docs/manual-ocaml/libref/Bigarray.Array1.html}
[Bigarray]} from OCaml's standard library
- {{:https://ocsigen.org/lwt/dev/api/Lwt_bytes} [Lwt_bytes]} from Lwt
- {{:https://github.com/inhabitedtype/bigstringaf} bigstringaf} *)
val create : int -> t
(** Allocates a fresh buffer of the given size. *)
val size : t -> int
(** Evaluates to the size of the given buffer. *)
val get : t -> int -> char
(** [Luv.Buffer.get buffer index] retrieves the character in [buffer] at
[index].
Can also be written as [buffer.{index}]. *)
val unsafe_get : t -> int -> char
(** Like {!Luv.Buffer.get}, but does not perform a bounds check. *)
val set : t -> int -> char -> unit
(** [Luv.Buffer.set buffer index value] sets the character in [buffer] at
[index] to [value].
Can also be written as [buffer.{index} <- value]. *)
val unsafe_set : t -> int -> char -> unit
(** Like {!Luv.Buffer.set}, but does not perform a bounds check. *)
val sub : t -> offset:int -> length:int -> t
(** [Luv.Buffer.sub buffer ~offset ~length] creates a view into [buffer] that
starts at the given offset and has the given length.
No data is copied. *)
val blit : source:t -> destination:t -> unit
(** Copies data from [source] to [destination].
The amount of data copied is the minimum of the two buffers' size.
To copy part of a buffer, use {!Luv.Buffer.sub} to create a view, and pass
the view to [Luv.Buffer.blit]. *)
val fill : t -> char -> unit
(** Fills the given buffer with the given character. *)
(** {1 Conversions} *)
val to_string : t -> string
(** Creates a string with the same contents as the given buffer. *)
val to_bytes : t -> bytes
(** Creates a [bytes] buffer with the same contents as the given buffer. *)
val from_string : string -> t
(** Creates a buffer from a string. *)
val from_bytes : bytes -> t
(** Creates a buffer from [bytes]. *)
(** {1 Converting blits} *)
val blit_to_bytes : t -> bytes -> destination_offset:int -> unit
(** Copies data from a buffer to a [bytes] buffer. *)
val blit_from_bytes : t -> bytes -> source_offset:int -> unit
(** Copies data from a [bytes] buffer to a buffer. *)
val blit_from_string : t -> string -> source_offset:int -> unit
(** Copies data from a string to a buffer. *)
(** {1 Lists of buffers}
Many Luv functions, such as {!Luv.File.write}, work with lists of buffers
(i.e., they do scatter-gather I/O). These are helpers for working with
buffer lists. *)
val total_size : t list -> int
(** Evaluates to the sum of the sizes of the buffers in the list. *)
val drop : t list -> int -> t list
(** [drop buffers count] drops the first [count] bytes from [buffers].
For example, if [buffers] contains two buffers of size 16, [drop buffers
18] will evaluate to a list that has lost the reference to the first buffer,
and contains only a view into the second buffer of size 14. *)
luv-0.5.14/src/c.ml 0000664 0000000 0000000 00000000612 14666340476 0013771 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
module Types = Luv_c_types
module Functions =
Luv_c_function_descriptions.Descriptions
(Luv_c_generated_functions.Non_blocking)
module Blocking =
Luv_c_function_descriptions.Blocking
(Luv_c_generated_functions.Blocking)
luv-0.5.14/src/c/ 0000775 0000000 0000000 00000000000 14666340476 0013440 5 ustar 00root root 0000000 0000000 luv-0.5.14/src/c/dune 0000664 0000000 0000000 00000011175 14666340476 0014323 0 ustar 00root root 0000000 0000000 (* -*- tuareg -*- *)
(* To make this build verbose:
1. dune build -p luv -j 1 --verbose --no-buffer
2. Remove --silent and --enable-silent-rules from sh configure
3. Pass V=1 instead of V=0 to make
4. Remove --silent --no-warnings from sh libtool
5. Unwrap all the commands from (ignore-outputs ...) *)
let foreign_archives, uv_library_flag, include_dirs, i_option, install_h =
let use_system_libuv =
match Sys.getenv "LUV_USE_SYSTEM_LIBUV" with
| "yes" -> true
| _ -> false
| exception Not_found -> false
in
if use_system_libuv then
"",
"-luv",
"",
"",
false
else
"(foreign_archives uv)",
"",
"(include_dirs vendor/libuv/include)",
"-I .",
true
let () = Jbuild_plugin.V1.send @@ {|
; The final FFI module, containing all the OCaml bits, and linked with libuv.
(library
(name luv_c)
(public_name luv.c)
(wrapped false)
(modules Luv_c_generated_functions)
(libraries ctypes luv_c_function_descriptions threads)
(foreign_stubs
(language c)
(names c_generated_functions helpers)
|}^ include_dirs ^{|)
|}^ foreign_archives ^{|
(c_library_flags |}^ uv_library_flag ^{| (:include extra_libs.sexp)))
|}^ (if not install_h then "" else {|
(rule
(deps (glob_files uv/*.h))
(action (copy vendor/libuv/include/uv.h uv.h)))
(install
(section lib)
(package luv)
(files
(uv.h as uv.h)
(uv/aix.h as uv/aix.h)
(uv/bsd.h as uv/bsd.h)
(uv/darwin.h as uv/darwin.h)
(uv/errno.h as uv/errno.h)
(uv/linux.h as uv/linux.h)
(uv/os390.h as uv/os390.h)
(uv/posix.h as uv/posix.h)
(uv/sunos.h as uv/sunos.h)
(uv/threadpool.h as uv/threadpool.h)
(uv/tree.h as uv/tree.h)
(uv/unix.h as uv/unix.h)
(uv/version.h as uv/version.h)
(uv/win.h as uv/win.h)))
|}) ^{|
; The vendored libuv.
(rule
(targets libuv.a dlluv%{ext_dll})
(deps (source_tree vendor))
(action (progn
(bash "cp -r vendor/configure/* vendor/libuv/")
(chdir vendor/libuv (progn
(bash
"sh configure --host `ocamlc -config | awk '/^host:/ {print $NF}'` \
'CC=%{cc}' CFLAGS=-DNDEBUG --silent --enable-silent-rules")
(ignore-outputs (bash
"$([ '%{os_type}' = Unix ] && echo %{make} || echo make) V=0 -j 4 \
-o aclocal.m4 -o Makefile.in -o configure \
-o configure.status -o Makefile libuv.la"))
(ignore-outputs (bash
"sh libtool --silent --no-warnings --mode install cp libuv.la `pwd`"))))
(bash "cp vendor/libuv/libuv.a .")
(ignore-outputs (bash
"cp vendor/libuv/libuv.so.1.0.0 dlluv.so || \
cp vendor/libuv/libuv.1.dylib dlluv.so || \
cp vendor/bin/libuv-1.dll dlluv.dll")))))
(rule
(targets extra_libs.sexp)
(action (ignore-outputs (bash "\
if ocamlc -config | grep mingw; then \
echo '(-ldbghelp -liphlpapi -lole32 -lpsapi -luserenv)' > extra_libs.sexp; \
else \
echo '()' > extra_libs.sexp; \
fi"))))
; Everything below is the bindings generation process using ctypes. It produces
; two OCaml modules, Luv_c_generated_functions and Luv_c_generated_types.
; Type bindings (Luv_c_generated_types).
(library
(name luv_c_type_descriptions)
(public_name luv.c_type_descriptions)
(modules Luv_c_type_descriptions)
(libraries ctypes))
(executable
(name generate_types_start)
(modules Generate_types_start)
(libraries ctypes.stubs luv_c_type_descriptions))
(rule
(with-stdout-to generate_types_step_2.c
(run ./generate_types_start.exe)))
; Based partially on
; https://github.com/avsm/ocaml-yaml/blob/master/types/stubgen/jbuild#L20
(rule
(targets generate_types_step_2.exe)
(deps (:c generate_types_step_2.c) helpers.h shims.h)
(action (bash "\
if [ '%{ocaml-config:ccomp_type}' = 'msvc' ]; then \
%{cc} %{c} \
-I '%{lib:ctypes:.}' \
-I '%{ocaml_where}' \
|}^ i_option ^{| /Fe\"%{targets}\"; \
else \
%{cc} %{c} \
-I '%{lib:ctypes:.}' \
-I '%{ocaml_where}' \
|}^ i_option ^{| -o %{targets}; \
fi")))
(rule
(with-stdout-to luv_c_generated_types.ml
(run ./generate_types_step_2.exe)))
; Function bindings.
(library
(name luv_c_function_descriptions)
(public_name luv.c_function_descriptions)
(flags (:standard -w -9-16-27))
(wrapped false)
(modules Luv_c_generated_types Luv_c_function_descriptions Luv_c_types)
(libraries ctypes luv_c_type_descriptions))
(executable
(name generate_c_functions)
(modules Generate_c_functions)
(libraries ctypes.stubs luv_c_function_descriptions))
(executable
(name generate_ml_functions)
(modules Generate_ml_functions)
(libraries ctypes.stubs luv_c_function_descriptions))
(rule
(with-stdout-to c_generated_functions.c
(run ./generate_c_functions.exe luv_stub)))
(rule
(with-stdout-to luv_c_generated_functions.ml
(run ./generate_ml_functions.exe luv_stub)))
|}
luv-0.5.14/src/c/generate_c_functions.ml 0000664 0000000 0000000 00000001451 14666340476 0020157 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
let () =
print_endline "#include \"windows_version.h\"";
print_endline "#include ";
print_endline "#define CAML_NAME_SPACE";
print_endline "#include ";
print_endline "#include ";
print_endline "#include ";
print_endline "#include ";
print_endline "#include \"helpers.h\"";
Cstubs.write_c
Format.std_formatter
~prefix:Sys.argv.(1)
(module Luv_c_function_descriptions.Descriptions);
Cstubs.write_c
~concurrency:Cstubs.unlocked
Format.std_formatter
~prefix:(Sys.argv.(1) ^ "_blocking")
(module Luv_c_function_descriptions.Blocking)
luv-0.5.14/src/c/generate_ml_functions.ml 0000664 0000000 0000000 00000001225 14666340476 0020344 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
let () =
print_endline "module Non_blocking =";
print_endline "struct";
Cstubs.write_ml
Format.std_formatter
~prefix:Sys.argv.(1)
(module Luv_c_function_descriptions.Descriptions);
print_endline "end";
print_newline ();
print_endline "module Blocking =";
print_endline "struct";
Cstubs.write_ml
~concurrency:Cstubs.unlocked
Format.std_formatter
~prefix:Sys.(argv.(1) ^ "_blocking")
(module Luv_c_function_descriptions.Blocking);
print_endline "end"
luv-0.5.14/src/c/generate_types_start.ml 0000664 0000000 0000000 00000001024 14666340476 0020222 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
let () =
print_endline "#include \"windows_version.h\"";
print_endline "#define CAML_NAME_SPACE";
print_endline "#include ";
print_endline "#include ";
print_endline "#include ";
print_endline "#include \"helpers.h\"";
Cstubs_structs.write_c
Format.std_formatter (module Luv_c_type_descriptions.Descriptions)
luv-0.5.14/src/c/helpers.c 0000664 0000000 0000000 00000041052 14666340476 0015250 0 ustar 00root root 0000000 0000000 // This file is part of Luv, released under the MIT license. See LICENSE.md for
// details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md.
#include
#include
#define CAML_NAME_SPACE
#include
#include
#include
#include
#include "ctypes_cstubs_internals.h"
#include
#include "helpers.h"
// Trampolines.
// If the trampoline will hold a reference to the callback across a potentially
// -allocating call into the OCaml runtime, it must declare it with:
//
// CAMLparam0();
// CAMLlocal1(callback);
//
// ...
//
// CAMLdrop;
//
// Otherwise, it can declare it as:
//
// value callback;
#define GET_REFERENCES(callback_index) \
value reference_array = *gc_root; \
callback = Field(reference_array, callback_index);
#define GET_HANDLE_CALLBACK(callback_index) \
value *gc_root = uv_handle_get_data((uv_handle_t*)c_handle); \
GET_REFERENCES(callback_index)
#define GET_REQUEST_CALLBACK(callback_index) \
value *gc_root = uv_req_get_data((uv_req_t*)c_request); \
GET_REFERENCES(callback_index)
static void luv_after_work_trampoline(uv_work_t *c_request, int status)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_alloc_trampoline(
uv_handle_t *c_handle, size_t suggested_size, uv_buf_t *buffer)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_ALLOCATE_CALLBACK);
value bigstring = caml_callback(callback, Val_int((int)suggested_size));
buffer->base = Caml_ba_data_val(bigstring);
buffer->len = Caml_ba_array_val(bigstring)->dim[0];
caml_release_runtime_system();
}
static void luv_async_trampoline(uv_async_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_check_trampoline(uv_check_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_close_trampoline(uv_handle_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_CLOSE_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_connect_trampoline(uv_connect_t *c_request, int status)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_connection_trampoline(uv_stream_t *c_handle, int status)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_CONNECTION_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_exit_trampoline(
uv_process_t *c_handle, int64_t exit_status, int term_signal)
{
caml_acquire_runtime_system();
CAMLparam0();
CAMLlocal1(callback);
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback2(
callback, caml_copy_int64(exit_status), Val_int(term_signal));
CAMLdrop;
caml_release_runtime_system();
}
static void luv_fs_trampoline(uv_fs_t *c_request)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_fs_event_trampoline(
uv_fs_event_t *c_handle, char *filename, int events, int status)
{
caml_acquire_runtime_system();
CAMLparam0();
CAMLlocal2(callback, option);
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
if (filename == NULL)
option = Val_int(0);
else {
option = caml_alloc_small(1, 0);
Field(option, 0) = caml_copy_string(filename);
}
caml_callback3(
callback, option, Val_int(events), Val_int(status));
CAMLdrop;
caml_release_runtime_system();
}
static void luv_fs_poll_trampoline(
uv_fs_poll_t *c_handle, int status, uv_stat_t *prev, uv_stat_t *curr)
{
caml_acquire_runtime_system();
CAMLparam0();
CAMLlocal1(callback);
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback3(
callback, Val_int(status), caml_copy_nativeint((intnat)prev),
caml_copy_nativeint((intnat)curr));
CAMLdrop;
caml_release_runtime_system();
}
static void luv_getaddrinfo_trampoline(
uv_getaddrinfo_t *c_request, int status, struct addrinfo *res)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_getnameinfo_trampoline(
uv_getnameinfo_t *c_request, int status, const char *hostname,
const char *service)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_idle_trampoline(uv_idle_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
uv_key_t luv_once_callback_key;
static void luv_once_trampoline(void)
{
value callback = (value)uv_key_get(&luv_once_callback_key);
caml_callback(callback, Val_unit);
}
static void luv_poll_trampoline(uv_poll_t *c_handle, int status, int event)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback2(callback, Val_int(status), Val_int(event));
caml_release_runtime_system();
}
static void luv_prepare_trampoline(uv_prepare_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_random_trampoline(
uv_random_t *c_request, int status, void *buffer, size_t length)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_read_trampoline(
uv_stream_t *c_handle, ssize_t nread, uv_buf_t *buffer)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int((int)nread));
caml_release_runtime_system();
}
static void luv_recv_trampoline(
uv_udp_t *c_handle, ssize_t nread, uv_buf_t *buffer, struct sockaddr *addr,
unsigned int flags)
{
caml_acquire_runtime_system();
CAMLparam0();
CAMLlocal1(callback);
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback3(
callback, Val_int((int)nread), caml_copy_nativeint((intnat)addr),
Val_int(flags));
CAMLdrop;
caml_release_runtime_system();
}
static void luv_send_trampoline(uv_udp_send_t *c_request, int status)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_shutdown_trampoline(uv_shutdown_t *c_request, int status)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
static void luv_signal_trampoline(uv_signal_t *c_handle, int signum)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_thread_trampoline(void *argument)
{
// The argument to this trampoline is a GC root, which points to the OCaml
// function to call in the new thread.
caml_c_thread_register();
caml_acquire_runtime_system();
value *gc_root = (value*)argument;
value callback = *gc_root;
caml_remove_generational_global_root(gc_root);
caml_stat_free(gc_root);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
caml_c_thread_unregister();
}
static void luv_timer_trampoline(uv_timer_t *c_handle)
{
caml_acquire_runtime_system();
value callback;
GET_HANDLE_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
}
static void luv_work_trampoline(uv_work_t *c_request)
{
// caml_c_thread_register and caml_c_thread_unregister can both fail, but we
// have no good way of reporting the failure, as we have no way of
// communicating it back to OCaml code. Perhaps the data structures need to
// be adjusted to permit this.
caml_c_thread_register();
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_WORK_FUNCTION);
caml_callback(callback, Val_unit);
caml_release_runtime_system();
caml_c_thread_unregister();
}
static void luv_write_trampoline(uv_write_t *c_request, int status)
{
caml_acquire_runtime_system();
value callback;
GET_REQUEST_CALLBACK(LUV_GENERIC_CALLBACK);
caml_callback(callback, Val_int(status));
caml_release_runtime_system();
}
uv_after_work_cb luv_get_after_work_trampoline(void)
{
return luv_after_work_trampoline;
}
uv_alloc_cb luv_get_alloc_trampoline(void)
{
return luv_alloc_trampoline;
}
uv_async_cb luv_get_async_trampoline(void)
{
return luv_async_trampoline;
}
uv_check_cb luv_get_check_trampoline(void)
{
return luv_check_trampoline;
}
uv_close_cb luv_get_close_trampoline(void)
{
return luv_close_trampoline;
}
uv_connect_cb luv_get_connect_trampoline(void)
{
return luv_connect_trampoline;
}
uv_connection_cb luv_get_connection_trampoline(void)
{
return luv_connection_trampoline;
}
uv_exit_cb luv_get_exit_trampoline(void)
{
return luv_exit_trampoline;
}
uv_exit_cb luv_null_exit_trampoline(void)
{
return NULL;
}
uv_fs_cb luv_get_fs_trampoline(void)
{
return luv_fs_trampoline;
}
uv_fs_cb luv_null_fs_callback_pointer(void)
{
return NULL;
}
luv_fs_event_cb luv_get_fs_event_trampoline(void)
{
return luv_fs_event_trampoline;
}
luv_fs_poll_cb luv_get_fs_poll_trampoline(void)
{
return luv_fs_poll_trampoline;
}
uv_getaddrinfo_cb luv_get_getaddrinfo_trampoline(void)
{
return luv_getaddrinfo_trampoline;
}
uv_getnameinfo_cb luv_get_getnameinfo_trampoline(void)
{
return luv_getnameinfo_trampoline;
}
uv_idle_cb luv_get_idle_trampoline(void)
{
return luv_idle_trampoline;
}
luv_once_cb luv_get_once_trampoline(void)
{
return luv_once_trampoline;
}
uv_poll_cb luv_get_poll_trampoline(void)
{
return luv_poll_trampoline;
}
uv_prepare_cb luv_get_prepare_trampoline(void)
{
return luv_prepare_trampoline;
}
uv_random_cb luv_get_random_trampoline(void)
{
return luv_random_trampoline;
}
uv_random_cb luv_null_random_trampoline(void)
{
return NULL;
}
luv_read_cb luv_get_read_trampoline(void)
{
return luv_read_trampoline;
}
luv_udp_recv_cb luv_get_recv_trampoline(void)
{
return luv_recv_trampoline;
}
uv_udp_send_cb luv_get_send_trampoline(void)
{
return luv_send_trampoline;
}
uv_shutdown_cb luv_get_shutdown_trampoline(void)
{
return luv_shutdown_trampoline;
}
uv_signal_cb luv_get_signal_trampoline(void)
{
return luv_signal_trampoline;
}
uv_thread_cb luv_get_thread_trampoline(void)
{
return luv_thread_trampoline;
}
uv_timer_cb luv_get_timer_trampoline(void)
{
return luv_timer_trampoline;
}
uv_work_cb luv_get_work_trampoline(void)
{
return luv_work_trampoline;
}
uv_write_cb luv_get_write_trampoline(void)
{
return luv_write_trampoline;
}
// Modifiers for uv_queue_work requests when calling a C function.
enum {
C_OCAML_GC_ROOT,
C_FUNCTION,
C_ARGUMENT,
C_FIELD_COUNT
};
int luv_add_c_function_and_argument(
uv_work_t *c_request, intnat function, intnat argument)
{
void **c_fields = malloc(C_FIELD_COUNT * sizeof(void*));
if (c_fields == NULL)
return 0;
c_fields[C_OCAML_GC_ROOT] = uv_req_get_data((uv_req_t*)c_request);
c_fields[C_FUNCTION] = (void*)function;
c_fields[C_ARGUMENT] = (void*)argument;
uv_req_set_data((uv_req_t*)c_request, c_fields);
return 1;
}
static void luv_after_c_work_trampoline(uv_work_t *c_request, int status)
{
void **c_fields = uv_req_get_data((uv_req_t*)c_request);
uv_req_set_data((uv_req_t*)c_request, c_fields[C_OCAML_GC_ROOT]);
free(c_fields);
luv_after_work_trampoline(c_request, status);
}
static void luv_c_work_trampoline(uv_work_t *c_request)
{
void **c_fields = uv_req_get_data((uv_req_t*)c_request);
void (*function)(void*) = c_fields[C_FUNCTION];
void *argument = c_fields[C_ARGUMENT];
function(argument);
}
uv_after_work_cb luv_get_after_c_work_trampoline(void)
{
return luv_after_c_work_trampoline;
}
uv_work_cb luv_get_c_work_trampoline(void)
{
return luv_c_work_trampoline;
}
int luv_thread_create_c(
uv_thread_t *tid,
const uv_thread_options_t* options,
intnat entry,
intnat arg)
{
return uv_thread_create_ex(tid, options, (void*)entry, (void*)arg);
}
int luv_once_init(uv_once_t *guard)
{
static int tls_key_initialized = 0;
if (tls_key_initialized == 0) {
int result = uv_key_create(&luv_once_callback_key);
if (result != 0)
return result;
tls_key_initialized = 1;
}
static uv_once_t initial_state = UV_ONCE_INIT;
memcpy(guard, &initial_state, sizeof(uv_once_t));
return 0;
}
CAMLprim value luv_set_once_callback(value callback)
{
uv_key_set(&luv_once_callback_key, (void*)callback);
return Val_unit;
}
// Warning-suppressing wrappers.
char* luv_version_string(void)
{
return (char*)uv_version_string();
}
char* luv_req_type_name(uv_req_type type)
{
return (char*)uv_req_type_name(type);
}
char* luv_fs_get_path(const uv_fs_t *req)
{
return (char*)uv_fs_get_path(req);
}
char* luv_dlerror(const uv_lib_t *lib)
{
return (char*)uv_dlerror(lib);
}
int luv_fs_event_start(
uv_fs_event_t *handle, luv_fs_event_cb cb, const char *path,
unsigned int flags)
{
return uv_fs_event_start(handle, (uv_fs_event_cb)cb, path, flags);
}
int luv_fs_poll_start(
uv_fs_poll_t *handle, luv_fs_poll_cb poll_cb, const char *path,
unsigned int interval)
{
return uv_fs_poll_start(handle, (uv_fs_poll_cb)poll_cb, path, interval);
}
int luv_read_start(
uv_stream_t *stream, uv_alloc_cb alloc_cb, luv_read_cb read_cb)
{
return uv_read_start(stream, alloc_cb, (uv_read_cb)read_cb);
}
int luv_udp_recv_start(
uv_udp_t *handle, uv_alloc_cb alloc_cb, luv_udp_recv_cb recv_cb)
{
return uv_udp_recv_start(handle, alloc_cb, (uv_udp_recv_cb)recv_cb);
}
int luv_os_uname(char *buffer)
{
return uv_os_uname((uv_utsname_t*)buffer);
}
// String conversion functions.
size_t luv_utf16_length_as_wtf8(const char *utf16, ssize_t utf16_len)
{
return uv_utf16_length_as_wtf8((const uint16_t*)utf16, utf16_len);
}
int luv_utf16_to_wtf8(
const char *utf16, ssize_t utf16_len, char **wtf8_ptr,
size_t *wtf8_len_ptr)
{
return
uv_utf16_to_wtf8(
(const uint16_t*)utf16, utf16_len, wtf8_ptr, wtf8_len_ptr);
}
// Other helpers.
char* luv_version_suffix(void)
{
return UV_VERSION_SUFFIX;
}
int luv_spawn(
uv_loop_t *loop,
uv_process_t *handle,
uv_exit_cb exit_cb,
const char *file,
char **args,
int arg_count,
char **env,
int env_count,
int set_env,
const char *cwd,
int do_cwd,
int flags,
int stdio_count,
uv_stdio_container_t *stdio,
int uid,
int gid)
{
args[arg_count] = NULL;
if (set_env)
env[env_count] = NULL;
else
env = NULL;
if (do_cwd == 0)
cwd = NULL;
uv_process_options_t options;
options.exit_cb = exit_cb;
options.file = file;
options.args = args;
options.env = env;
options.cwd = cwd;
options.flags = flags;
options.stdio_count = stdio_count;
options.stdio = stdio;
options.uid = uid;
options.gid = gid;
caml_release_runtime_system();
int result = uv_spawn(loop, handle, &options);
caml_acquire_runtime_system();
return result;
}
int luv_is_invalid_handle_value(uv_os_fd_t handle)
{
if (handle == (uv_os_fd_t)-1)
return 1;
else
return 0;
}
int luv_is_invalid_socket_value(uv_os_sock_t socket)
{
if (socket == -1)
return 1;
else
return 0;
}
int luv_sa_family_to_int(sa_family_t family)
{
return family;
}
luv-0.5.14/src/c/helpers.h 0000664 0000000 0000000 00000016552 14666340476 0015264 0 ustar 00root root 0000000 0000000 // This file is part of Luv, released under the MIT license. See LICENSE.md for
// details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md.
#pragma once
#ifndef LUV_HELPERS_H_
#define LUV_HELPERS_H_
#ifndef _WIN32
#include
#endif
#define CAML_NAME_SPACE
#include
#include
#include "shims.h"
#ifdef _WIN32
#ifndef S_ISUID
#define S_ISUID 0
#endif
#ifndef S_ISGID
#define S_ISGID 0
#endif
#ifndef S_ISVTX
#define S_ISVTX 0
#endif
#ifndef SIGPROF
#define SIGPROF 0
#endif
typedef ADDRESS_FAMILY sa_family_t;
#endif
// Callback trampolines.
//
// We need to pass C function pointers to libuv, but call OCaml callbacks.
// Trampolines are the C functions whose addresses are passed to libuv, and all
// they do is retrieve the correct OCaml callback from the handle or request
// that is passed to them by libuv, and call it.
// Not declared by libuv.
typedef void (*luv_once_cb)(void);
// Differ from libuv declarations in const-ness of arguments. See "Warning
// suppression" below.
typedef void (*luv_fs_event_cb)(
uv_fs_event_t *handle, char *filename, int events, int status);
typedef void (*luv_fs_poll_cb)(
uv_fs_poll_t *handle, int status, uv_stat_t *prev, uv_stat_t *curr);
typedef void (*luv_read_cb)(uv_stream_t *stream, ssize_t nread, uv_buf_t *buf);
typedef void (*luv_udp_recv_cb)(
uv_udp_t *handle, ssize_t nread, uv_buf_t *buf, struct sockaddr *addr,
unsigned int flags);
uv_after_work_cb luv_get_after_work_trampoline(void);
uv_alloc_cb luv_get_alloc_trampoline(void);
uv_async_cb luv_get_async_trampoline(void);
uv_check_cb luv_get_check_trampoline(void);
uv_close_cb luv_get_close_trampoline(void);
uv_connect_cb luv_get_connect_trampoline(void);
uv_connection_cb luv_get_connection_trampoline(void);
uv_exit_cb luv_get_exit_trampoline(void);
uv_exit_cb luv_null_exit_trampoline(void);
uv_fs_cb luv_get_fs_trampoline(void);
uv_fs_cb luv_null_fs_callback_pointer(void);
luv_fs_event_cb luv_get_fs_event_trampoline(void);
luv_fs_poll_cb luv_get_fs_poll_trampoline(void);
uv_getaddrinfo_cb luv_get_getaddrinfo_trampoline(void);
uv_getnameinfo_cb luv_get_getnameinfo_trampoline(void);
uv_idle_cb luv_get_idle_trampoline(void);
luv_once_cb luv_get_once_trampoline(void);
uv_poll_cb luv_get_poll_trampoline(void);
uv_prepare_cb luv_get_prepare_trampoline(void);
uv_random_cb luv_get_random_trampoline(void);
uv_random_cb luv_null_random_trampoline(void);
luv_read_cb luv_get_read_trampoline(void);
luv_udp_recv_cb luv_get_recv_trampoline(void);
uv_udp_send_cb luv_get_send_trampoline(void);
uv_shutdown_cb luv_get_shutdown_trampoline(void);
uv_signal_cb luv_get_signal_trampoline(void);
uv_thread_cb luv_get_thread_trampoline(void);
uv_timer_cb luv_get_timer_trampoline(void);
uv_work_cb luv_get_work_trampoline(void);
uv_write_cb luv_get_write_trampoline(void);
// Handles can have multiple outstanding callbacks, so the corresponding OCaml
// closures are stored in an array. These are the indices into that array for
// the various callbacks.
// All handles and requests have at least a self-reference, and a reference to
// an OCaml callback.
enum {
LUV_SELF_REFERENCE,
LUV_GENERIC_CALLBACK,
LUV_MINIMUM_REFERENCE_COUNT
};
// Handles additionally have a reference to an OCaml close callback.
enum {
LUV_CLOSE_CALLBACK = LUV_MINIMUM_REFERENCE_COUNT,
LUV_HANDLE_REFERENCE_COUNT
};
// Stream handles have additional callbacks.
enum {
LUV_ALLOCATE_CALLBACK = LUV_HANDLE_REFERENCE_COUNT,
LUV_CONNECTION_CALLBACK,
LUV_STREAM_REFERENCE_COUNT
};
// UDP handles have other additional callbacks.
enum {
LUV_UDP_ALLOCATE_CALLBACK = LUV_HANDLE_REFERENCE_COUNT,
LUV_UDP_REFERENCE_COUNT
};
// Thread pool requests store one extra callback over normal requests.
enum {
LUV_WORK_FUNCTION = LUV_MINIMUM_REFERENCE_COUNT,
LUV_WORK_REFERENCE_COUNT
};
// Helpers for setting up uv_queue_work requests that call a C function.
int luv_add_c_function_and_argument(
uv_work_t *c_request, intnat function, intnat argument);
uv_after_work_cb luv_get_after_c_work_trampoline(void);
uv_work_cb luv_get_c_work_trampoline(void);
// Helper for calling uv_thread_create with the address of a C function.
int luv_thread_create_c(
uv_thread_t *tid,
const uv_thread_options_t* options,
intnat entry,
intnat arg);
// Helpers for uv_once.
int luv_once_init(uv_once_t *guard);
CAMLprim value luv_set_once_callback(value callback);
// Warning suppression.
//
// These wrappers just call the functions they wrap, but the arguments and/or
// return values have different const-ness from how they are declared by libuv.
// Ctypes is unable to emit the correct cv-qualifiers, so binding the libuv
// functions directly with Ctypes results in noisy warnings. These wrappers
// suppress the warnings by performing const_casts.
char* luv_version_string(void);
char* luv_req_type_name(uv_req_type type);
char* luv_fs_get_path(const uv_fs_t *req);
char* luv_dlerror(const uv_lib_t *lib);
int luv_fs_event_start(
uv_fs_event_t *handle, luv_fs_event_cb cb, const char *path,
unsigned int flags);
int luv_fs_poll_start(
uv_fs_poll_t *handle, luv_fs_poll_cb poll_cb, const char *path,
unsigned int interval);
int luv_read_start(
uv_stream_t *stream, uv_alloc_cb alloc_cb, luv_read_cb read_cb);
int luv_udp_recv_start(
uv_udp_t *handle, uv_alloc_cb alloc_cb, luv_udp_recv_cb recv_cb);
// Helper for uv_os_uname, which uses an inconvenient buffer argument type.
int luv_os_uname(char *buffer);
// String conversion functions. These are wrapped because it is convenient to
// use Ctypes to pass OCaml strings directly to C code, but the Ctypes type
// combinator for that purpose only compiles against C arguments of types such
// as char*, and not uint16_t*. So these helpers add the necessary casts to
// satisfy Ctypes.
size_t luv_utf16_length_as_wtf8(const char *utf16, ssize_t utf16_len);
int luv_utf16_to_wtf8(
const char *utf16, ssize_t utf16_len, char **wtf8_ptr,
size_t *wtf8_len_ptr);
// Miscellaneous helpers - other things that are easiest to do in C.
// Ctypes.constant can't bind a char*, so we return it instead.
char* luv_version_suffix(void);
// The arguments to uv_spawn involve complex-enough C data, that it is easiest
// to create a wrapper function that takes simple arguments, and create the
// proper argument data structures in C.
int luv_spawn(
uv_loop_t *loop,
uv_process_t *handle,
uv_exit_cb exit_cb,
const char *file,
char **args,
int arg_count,
char **env,
int env_count,
int set_env,
const char *cwd,
int do_cwd,
int flags,
int stdio_count,
uv_stdio_container_t *stdio,
int uid,
int gid);
// File descriptor validity checks. These are used only by Luv.Unix. However,
// because they are exposed in OCaml through Ctypes, it is convenient to have
// them here. They don't introduce a dependency on Unix. THe rest of the file
// descriptor C helpers, which do depend on Unix, are defined in Luv.Unix's own
// C helper file. Conveniently, they are, and must be, exposed in OCaml through
// the built-in FFI.
int luv_is_invalid_handle_value(uv_os_fd_t handle);
int luv_is_invalid_socket_value(uv_os_sock_t socket);
// sa_family_t has different size on different platforms, so we use a helper for
// casting it to an int on the C side. See
// https://github.com/aantron/luv/pull/112
int luv_sa_family_to_int(sa_family_t family);
#endif // #ifndef LUV_HELPERS_H_
luv-0.5.14/src/c/luv_c_function_descriptions.ml 0000664 0000000 0000000 00000135075 14666340476 0021610 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(* Everything is in one file to cut down on Dune boilerplate, as it would grow
proportionally in the number of files the bindings are spread over.
https://github.com/ocaml/dune/issues/135. *)
module Types = Luv_c_types
(* We want to be able to call some of the libuv functions with the OCaml runtime
lock released, in some circumstances. For that, we have Ctypes generate
separate stubs that release the lock.
However, releasing the lock is not possible for some kinds of arguments. So,
we can't blindly generate lock-releasing and lock-retaining versions of each
binding.
Instead, we group the lock-releasing bindings in this module [Blocking]. *)
module Blocking (F : Ctypes.FOREIGN) =
struct
open Ctypes
open F
let error_code = int
module Loop =
struct
let run =
foreign "uv_run"
(ptr Types.Loop.t @-> Types.Loop.Run_mode.t @-> returning bool)
end
(* bind is potentially a blocking call, because the filesystem may block the
calling process indefinitely when creating a file for Unix domain socket or
similar. *)
module Pipe =
struct
let bind =
foreign "uv_pipe_bind"
(ptr Types.Pipe.t @-> string @-> returning error_code)
let bind2 =
foreign "uv_pipe_bind2"
(ptr Types.Pipe.t @-> string @-> size_t @-> int @->
returning error_code)
end
(* Synchronous (callback = NULL) calls to these functions are blocking, so we
have to release the OCaml runtime lock. Technically, asychronous calls are
non-blocking, and we don't have to release the lock. However, supporting
both variants would take a bit of extra code to implement, so it's best to
see if there is a need. For now, we release the runtime lock during the
asychronous calls as well. *)
module File =
struct
let t = int
let uid = int
let gid = int
let request = Types.File.Request.t
type trampoline = (Types.File.Request.t ptr -> unit) static_funptr
let trampoline : trampoline typ =
static_funptr
Ctypes.(ptr request @-> returning void)
let get_trampoline =
foreign "luv_get_fs_trampoline"
(void @-> returning trampoline)
let get_null_callback =
foreign "luv_null_fs_callback_pointer"
(void @-> returning trampoline)
let req_cleanup =
foreign "uv_fs_req_cleanup"
(ptr request @-> returning void)
let close =
foreign "uv_fs_close"
(ptr Types.Loop.t @-> ptr request @-> t @-> trampoline @->
returning error_code)
let open_ =
foreign "uv_fs_open"
(ptr Types.Loop.t @->
ptr request @->
string @->
int @->
int @->
trampoline @->
returning error_code)
let read =
foreign "uv_fs_read"
(ptr Types.Loop.t @->
ptr request @->
t @->
ptr Types.Buf.t @->
uint @->
int64_t @->
trampoline @->
returning error_code)
let write =
foreign "uv_fs_write"
(ptr Types.Loop.t @->
ptr request @->
t @->
ptr Types.Buf.t @->
uint @->
int64_t @->
trampoline @->
returning error_code)
let unlink =
foreign "uv_fs_unlink"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let mkdir =
foreign "uv_fs_mkdir"
(ptr Types.Loop.t @-> ptr request @-> string @-> int @-> trampoline @->
returning error_code)
let mkdtemp =
foreign "uv_fs_mkdtemp"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let mkstemp =
foreign "uv_fs_mkstemp"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let rmdir =
foreign "uv_fs_rmdir"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let opendir =
foreign "uv_fs_opendir"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let closedir =
foreign "uv_fs_closedir"
(ptr Types.Loop.t @->
ptr request @->
ptr Types.File.Dir.t @->
trampoline @->
returning error_code)
let readdir =
foreign "uv_fs_readdir"
(ptr Types.Loop.t @->
ptr request @->
ptr Types.File.Dir.t @->
trampoline @->
returning error_code)
let scandir =
foreign "uv_fs_scandir"
(ptr Types.Loop.t @-> ptr request @-> string @-> int @-> trampoline @->
returning error_code)
let scandir_next =
foreign "uv_fs_scandir_next"
(ptr request @-> ptr Types.File.Dirent.t @-> returning error_code)
let stat =
foreign "uv_fs_stat"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let lstat =
foreign "uv_fs_lstat"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let fstat =
foreign "uv_fs_fstat"
(ptr Types.Loop.t @-> ptr request @-> t @-> trampoline @->
returning error_code)
let statfs =
foreign "uv_fs_statfs"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let rename =
foreign "uv_fs_rename"
(ptr Types.Loop.t @->
ptr request @->
string @->
string @->
trampoline @->
returning error_code)
let fsync =
foreign "uv_fs_fsync"
(ptr Types.Loop.t @-> ptr request @-> t @-> trampoline @->
returning error_code)
let fdatasync =
foreign "uv_fs_fdatasync"
(ptr Types.Loop.t @-> ptr request @-> t @-> trampoline @->
returning error_code)
let ftruncate =
foreign "uv_fs_ftruncate"
(ptr Types.Loop.t @-> ptr request @-> t @-> int64_t @-> trampoline @->
returning error_code)
let copyfile =
foreign "uv_fs_copyfile"
(ptr Types.Loop.t @->
ptr request @->
string @->
string @->
int @->
trampoline @->
returning error_code)
let sendfile =
foreign "uv_fs_sendfile"
(ptr Types.Loop.t @->
ptr request @->
t @->
t @->
int64_t @->
size_t @->
trampoline @->
returning error_code)
let access =
foreign "uv_fs_access"
(ptr Types.Loop.t @-> ptr request @-> string @-> int @-> trampoline @->
returning error_code)
let chmod =
foreign "uv_fs_chmod"
(ptr Types.Loop.t @-> ptr request @-> string @-> int @-> trampoline @->
returning error_code)
let fchmod =
foreign "uv_fs_fchmod"
(ptr Types.Loop.t @-> ptr request @-> t @-> int @-> trampoline @->
returning error_code)
let utime =
foreign "uv_fs_utime"
(ptr Types.Loop.t @->
ptr request @->
string @->
float @->
float @->
trampoline @->
returning error_code)
let futime =
foreign "uv_fs_futime"
(ptr Types.Loop.t @->
ptr request @->
t @->
float @->
float @->
trampoline @->
returning error_code)
let lutime =
foreign "uv_fs_lutime"
(ptr Types.Loop.t @->
ptr request @->
string @->
float @->
float @->
trampoline @->
returning error_code)
let link =
foreign "uv_fs_link"
(ptr Types.Loop.t @->
ptr request @->
string @->
string @->
trampoline @->
returning error_code)
let symlink =
foreign "uv_fs_symlink"
(ptr Types.Loop.t @->
ptr request @->
string @->
string @->
int @->
trampoline @->
returning error_code)
let readlink =
foreign "uv_fs_readlink"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let realpath =
foreign "uv_fs_realpath"
(ptr Types.Loop.t @-> ptr request @-> string @-> trampoline @->
returning error_code)
let chown =
foreign "uv_fs_chown"
(ptr Types.Loop.t @->
ptr request @->
string @->
uid @->
gid @->
trampoline @->
returning error_code)
let fchown =
foreign "uv_fs_fchown"
(ptr Types.Loop.t @->
ptr request @->
t @->
uid @->
gid @->
trampoline @->
returning error_code)
let lchown =
foreign "uv_fs_lchown"
(ptr Types.Loop.t @->
ptr request @->
string @->
uid @->
gid @->
trampoline @->
returning error_code)
let get_result =
foreign "uv_fs_get_result"
(ptr request @-> returning PosixTypes.ssize_t)
let get_ptr =
foreign "uv_fs_get_ptr"
(ptr request @-> returning (ptr void))
let get_ptr_as_string =
foreign "uv_fs_get_ptr"
(ptr request @-> returning string)
let get_path =
foreign "luv_fs_get_path"
(ptr request @-> returning string)
let get_statbuf =
foreign "uv_fs_get_statbuf"
(ptr request @-> returning (ptr Types.File.Stat.t))
end
module Thread =
struct
let join =
foreign "uv_thread_join"
(ptr Types.Thread.t @-> returning error_code)
end
module Mutex =
struct
let lock =
foreign "uv_mutex_lock"
(ptr Types.Mutex.t @-> returning void)
end
module Rwlock =
struct
let rdlock =
foreign "uv_rwlock_rdlock"
(ptr Types.Rwlock.t @-> returning void)
let wrlock =
foreign "uv_rwlock_wrlock"
(ptr Types.Rwlock.t @-> returning void)
end
module Semaphore =
struct
let wait =
foreign "uv_sem_wait"
(ptr Types.Semaphore.t @-> returning void)
end
module Condition =
struct
let wait =
foreign "uv_cond_wait"
(ptr Types.Condition.t @-> ptr Types.Mutex.t @-> returning void)
let timedwait =
foreign "uv_cond_timedwait"
(ptr Types.Condition.t @-> ptr Types.Mutex.t @-> uint64_t @->
returning error_code)
end
module Barrier =
struct
let wait =
foreign "uv_barrier_wait"
(ptr Types.Barrier.t @-> returning bool)
end
module Time =
struct
let sleep =
foreign "uv_sleep"
(int @-> returning void)
end
module Random =
struct
let request = Types.Random.Request.t
let trampoline =
static_funptr
Ctypes.(ptr request @-> error_code @-> ptr void @-> size_t @->
returning void)
let random =
foreign "uv_random"
(ptr Types.Loop.t @->
ptr request @->
ptr char @->
size_t @->
uint @->
trampoline @->
returning error_code)
end
end
module Descriptions (F : Ctypes.FOREIGN) =
struct
open Ctypes
open F
let error_code = int
module Error =
struct
let strerror_r =
foreign "uv_strerror_r"
(error_code @-> ocaml_bytes @-> int @-> returning void)
let err_name_r =
foreign "uv_err_name_r"
(error_code @-> ocaml_bytes @-> int @-> returning void)
let translate_sys_error =
foreign "uv_translate_sys_error"
(int @-> returning error_code)
end
module Version =
struct
let suffix =
foreign "luv_version_suffix"
(void @-> returning string)
let version =
foreign "uv_version"
(void @-> returning int)
let string =
foreign "luv_version_string"
(void @-> returning string)
end
module Loop =
struct
let t = Types.Loop.t
let init =
foreign "uv_loop_init"
(ptr t @-> returning error_code)
let configure =
foreign "uv_loop_configure"
(ptr t @-> int @-> int @-> returning error_code)
let close =
foreign "uv_loop_close"
(ptr t @-> returning error_code)
let default =
foreign "uv_default_loop"
(void @-> returning (ptr t))
let alive =
foreign "uv_loop_alive"
(ptr t @-> returning bool)
let stop =
foreign "uv_stop"
(ptr t @-> returning void)
let backend_fd =
foreign "uv_backend_fd"
(ptr t @-> returning int)
let backend_timeout =
foreign "uv_backend_timeout"
(ptr t @-> returning int)
let now =
foreign "uv_now"
(ptr t @-> returning uint64_t)
let update_time =
foreign "uv_update_time"
(ptr t @-> returning void)
let fork =
foreign "uv_loop_fork"
(ptr t @-> returning error_code)
let library_shutdown =
foreign "uv_library_shutdown"
(void @-> returning void)
end
module Handle =
struct
let t = Types.Handle.t
let close_trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let alloc_trampoline =
static_funptr
Ctypes.(ptr t @-> size_t @-> ptr Types.Buf.t @-> returning void)
let get_close_trampoline =
foreign "luv_get_close_trampoline"
(void @-> returning close_trampoline)
let get_alloc_trampoline =
foreign "luv_get_alloc_trampoline"
(void @-> returning alloc_trampoline)
let is_active =
foreign "uv_is_active"
(ptr t @-> returning bool)
let is_closing =
foreign "uv_is_closing"
(ptr t @-> returning bool)
let close =
foreign "uv_close"
(ptr t @-> close_trampoline @-> returning void)
let ref =
foreign "uv_ref"
(ptr t @-> returning void)
let unref =
foreign "uv_unref"
(ptr t @-> returning void)
let has_ref =
foreign "uv_has_ref"
(ptr t @-> returning bool)
let send_buffer_size =
foreign "uv_send_buffer_size"
(ptr t @-> ptr int @-> returning error_code)
let recv_buffer_size =
foreign "uv_recv_buffer_size"
(ptr t @-> ptr int @-> returning error_code)
let fileno =
foreign "uv_fileno"
(ptr t @-> ptr Types.Os_fd.t @-> returning error_code)
let get_loop =
foreign "uv_handle_get_loop"
(ptr t @-> returning (ptr Loop.t))
let get_data =
foreign "uv_handle_get_data"
(ptr t @-> returning (ptr void))
let set_data =
foreign "uv_handle_set_data"
(ptr t @-> ptr void @-> returning void)
end
module Request =
struct
let t = Types.Request.t
let cancel =
foreign "uv_cancel"
(ptr t @-> returning error_code)
let get_data =
foreign "uv_req_get_data"
(ptr t @-> returning (ptr void))
let set_data =
foreign "uv_req_set_data"
(ptr t @-> ptr void @-> returning void)
end
module Timer =
struct
let t = Types.Timer.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let get_trampoline =
foreign "luv_get_timer_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_timer_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "uv_timer_start"
(ptr t @-> trampoline @-> uint64_t @-> uint64_t @->
returning error_code)
let stop =
foreign "uv_timer_stop"
(ptr t @-> returning error_code)
let again =
foreign "uv_timer_again"
(ptr t @-> returning error_code)
let set_repeat =
foreign "uv_timer_set_repeat"
(ptr t @-> uint64_t @-> returning void)
let get_repeat =
foreign "uv_timer_get_repeat"
(ptr t @-> returning uint64_t)
let get_due_in =
foreign "uv_timer_get_due_in"
(ptr t @-> returning uint64_t)
end
module Prepare =
struct
let t = Types.Prepare.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let get_trampoline =
foreign "luv_get_prepare_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_prepare_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "uv_prepare_start"
(ptr t @-> trampoline @-> returning error_code)
let stop =
foreign "uv_prepare_stop"
(ptr t @-> returning error_code)
end
module Check =
struct
let t = Types.Check.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let get_trampoline =
foreign "luv_get_check_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_check_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "uv_check_start"
(ptr t @-> trampoline @-> returning error_code)
let stop =
foreign "uv_check_stop"
(ptr t @-> returning error_code)
end
module Idle =
struct
let t = Types.Idle.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let get_trampoline =
foreign "luv_get_idle_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_idle_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "uv_idle_start"
(ptr t @-> trampoline @-> returning error_code)
let stop =
foreign "uv_idle_stop"
(ptr t @-> returning error_code)
end
module Async =
struct
let t = Types.Async.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let get_trampoline =
foreign "luv_get_async_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_async_init"
(ptr Loop.t @-> ptr t @-> trampoline @-> returning error_code)
let send =
foreign "uv_async_send"
(ptr t @-> returning error_code)
end
module Poll =
struct
let t = Types.Poll.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> int @-> int @-> returning void)
let get_trampoline =
foreign "luv_get_poll_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_poll_init"
(ptr Loop.t @-> ptr t @-> int @-> returning error_code)
let init_socket =
foreign "uv_poll_init_socket"
(ptr Loop.t @-> ptr t @-> Types.Os_socket.t @-> returning error_code)
let start =
foreign "uv_poll_start"
(ptr t @-> int @-> trampoline @-> returning error_code)
let stop =
foreign "uv_poll_stop"
(ptr t @-> returning error_code)
end
module Signal =
struct
let t = Types.Signal.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> int @-> returning void)
let get_trampoline =
foreign "luv_get_signal_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_signal_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "uv_signal_start"
(ptr t @-> trampoline @-> int @-> returning error_code)
let start_oneshot =
foreign "uv_signal_start_oneshot"
(ptr t @-> trampoline @-> int @-> returning error_code)
let stop =
foreign "uv_signal_stop"
(ptr t @-> returning error_code)
end
module Stream =
struct
module Connect_request =
struct
let trampoline =
static_funptr
Ctypes.(ptr Types.Stream.Connect_request.t @-> error_code @->
returning void)
let get_trampoline =
foreign "luv_get_connect_trampoline"
(void @-> returning trampoline)
end
module Shutdown_request =
struct
let trampoline =
static_funptr
Ctypes.(ptr Types.Stream.Shutdown_request.t @-> error_code @->
returning void)
let get_trampoline =
foreign "luv_get_shutdown_trampoline"
(void @-> returning trampoline)
end
module Write_request =
struct
let trampoline =
static_funptr
Ctypes.(ptr Types.Stream.Write_request.t @-> error_code @->
returning void)
let get_trampoline =
foreign "luv_get_write_trampoline"
(void @-> returning trampoline)
end
let t = Types.Stream.t
let connection_trampoline =
static_funptr
Ctypes.(ptr t @-> error_code @-> returning void)
let read_trampoline =
static_funptr
Ctypes.(ptr t @-> PosixTypes.ssize_t @-> ptr Types.Buf.t @->
returning void)
let get_connection_trampoline =
foreign "luv_get_connection_trampoline"
(void @-> returning connection_trampoline)
let get_read_trampoline =
foreign "luv_get_read_trampoline"
(void @-> returning read_trampoline)
let shutdown =
foreign "uv_shutdown"
(ptr Types.Stream.Shutdown_request.t @->
ptr t @->
Shutdown_request.trampoline @->
returning error_code)
let listen =
foreign "uv_listen"
(ptr t @-> int @-> connection_trampoline @-> returning error_code)
let accept =
foreign "uv_accept"
(ptr t @-> ptr t @-> returning error_code)
let read_start =
foreign "luv_read_start"
(ptr t @-> Handle.alloc_trampoline @-> read_trampoline @->
returning error_code)
let read_stop =
foreign "uv_read_stop"
(ptr t @-> returning error_code)
let write2 =
foreign "uv_write2"
(ptr Types.Stream.Write_request.t @->
ptr t @->
ptr Types.Buf.t @->
uint @->
ptr t @->
Write_request.trampoline @->
returning error_code)
let try_write =
foreign "uv_try_write"
(ptr t @-> ptr Types.Buf.t @-> uint @-> returning error_code)
let try_write2 =
foreign "uv_try_write2"
(ptr t @-> ptr Types.Buf.t @-> uint @-> ptr t @-> returning error_code)
let is_readable =
foreign "uv_is_readable"
(ptr t @-> returning bool)
let is_writable =
foreign "uv_is_writable"
(ptr t @-> returning bool)
let set_blocking =
foreign "uv_stream_set_blocking"
(ptr t @-> bool @-> returning error_code)
let get_write_queue_size =
foreign "uv_stream_get_write_queue_size"
(ptr t @-> returning size_t)
end
module TCP =
struct
let t = Types.TCP.t
let init =
foreign "uv_tcp_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let init_ex =
foreign "uv_tcp_init_ex"
(ptr Loop.t @-> ptr t @-> uint @-> returning error_code)
let open_ =
foreign "uv_tcp_open"
(ptr t @-> Types.Os_socket.t @-> returning error_code)
let socketpair =
foreign "uv_socketpair"
(int @-> int @-> ptr Types.Os_socket.t @-> int @-> int @->
returning error_code)
let nodelay =
foreign "uv_tcp_nodelay"
(ptr t @-> bool @-> returning error_code)
let keepalive =
foreign "uv_tcp_keepalive"
(ptr t @-> bool @-> int @-> returning error_code)
let simultaneous_accepts =
foreign "uv_tcp_simultaneous_accepts"
(ptr t @-> bool @-> returning error_code)
let bind =
foreign "uv_tcp_bind"
(ptr t @-> ptr Types.Sockaddr.t @-> int @-> returning error_code)
let getsockname =
foreign "uv_tcp_getsockname"
(ptr t @-> ptr Types.Sockaddr.t @-> ptr int @-> returning error_code)
let getpeername =
foreign "uv_tcp_getpeername"
(ptr t @-> ptr Types.Sockaddr.t @-> ptr int @-> returning error_code)
let connect =
foreign "uv_tcp_connect"
(ptr Types.Stream.Connect_request.t @->
ptr t @->
ptr Types.Sockaddr.t @->
Stream.Connect_request.trampoline @->
returning error_code)
let close_reset =
foreign "uv_tcp_close_reset"
(ptr t @-> Handle.close_trampoline @-> returning error_code)
end
module Pipe =
struct
let t = Types.Pipe.t
let init =
foreign "uv_pipe_init"
(ptr Loop.t @-> ptr t @-> bool @-> returning error_code)
let pipe =
foreign "uv_pipe"
(ptr int @-> int @-> int @-> returning error_code)
let open_ =
foreign "uv_pipe_open"
(ptr t @-> int @-> returning error_code)
let connect =
foreign "uv_pipe_connect"
(ptr Types.Stream.Connect_request.t @->
ptr t @->
ocaml_string @->
Stream.Connect_request.trampoline @->
returning void)
let connect2 =
foreign "uv_pipe_connect2"
(ptr Types.Stream.Connect_request.t @->
ptr t @->
ocaml_string @->
size_t @->
int @->
Stream.Connect_request.trampoline @->
returning void)
let getsockname =
foreign "uv_pipe_getsockname"
(ptr t @-> ocaml_bytes @-> ptr size_t @-> returning error_code)
let getpeername =
foreign "uv_pipe_getpeername"
(ptr t @-> ocaml_bytes @-> ptr size_t @-> returning error_code)
let pending_instances =
foreign "uv_pipe_pending_instances"
(ptr t @-> int @-> returning void)
let pending_count =
foreign "uv_pipe_pending_count"
(ptr t @-> returning int)
let pending_type =
foreign "uv_pipe_pending_type"
(ptr t @-> returning int)
let chmod =
foreign "uv_pipe_chmod"
(ptr t @-> int @-> returning error_code)
end
module TTY =
struct
let t = Types.TTY.t
let init =
foreign "uv_tty_init"
(ptr Loop.t @-> ptr t @-> Types.File.t @-> int @-> returning error_code)
let set_mode =
foreign "uv_tty_set_mode"
(ptr t @-> Types.TTY.Mode.t @-> returning error_code)
let reset_mode =
foreign "uv_tty_reset_mode"
(void @-> returning error_code)
let get_winsize =
foreign "uv_tty_get_winsize"
(ptr t @-> ptr int @-> ptr int @-> returning error_code)
let set_vterm_state =
foreign "uv_tty_set_vterm_state"
(Types.TTY.Vterm_state.t @-> returning void)
let get_vterm_state =
foreign "uv_tty_get_vterm_state"
(ptr Types.TTY.Vterm_state.t @-> returning error_code)
end
module UDP =
struct
let t = Types.UDP.t
let init =
foreign "uv_udp_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let init_ex =
foreign "uv_udp_init_ex"
(ptr Loop.t @-> ptr t @-> uint @-> returning error_code)
let open_ =
foreign "uv_udp_open"
(ptr t @-> Types.Os_socket.t @-> returning error_code)
let bind =
foreign "uv_udp_bind"
(ptr t @-> ptr Types.Sockaddr.t @-> int @-> returning error_code)
let connect =
foreign "uv_udp_connect"
(ptr t @-> ptr Types.Sockaddr.t @-> returning error_code)
let getpeername =
foreign "uv_udp_getpeername"
(ptr t @-> ptr Types.Sockaddr.t @-> ptr int @-> returning error_code)
let getsockname =
foreign "uv_udp_getsockname"
(ptr t @-> ptr Types.Sockaddr.t @-> ptr int @-> returning error_code)
let set_membership =
foreign "uv_udp_set_membership"
(ptr t @-> ocaml_string @-> ocaml_string @-> Types.UDP.Membership.t @->
returning error_code)
let set_source_membership =
foreign "uv_udp_set_source_membership"
(ptr t @->
ocaml_string @->
ocaml_string @->
ocaml_string @->
Types.UDP.Membership.t @->
returning error_code)
let set_multicast_loop =
foreign "uv_udp_set_multicast_loop"
(ptr t @-> bool @-> returning error_code)
let set_multicast_ttl =
foreign "uv_udp_set_multicast_ttl"
(ptr t @-> int @-> returning error_code)
let set_multicast_interface =
foreign "uv_udp_set_multicast_interface"
(ptr t @-> ocaml_string @-> returning error_code)
let set_broadcast =
foreign "uv_udp_set_broadcast"
(ptr t @-> bool @-> returning error_code)
let set_ttl =
foreign "uv_udp_set_ttl"
(ptr t @-> int @-> returning error_code)
module Send_request =
struct
let trampoline =
static_funptr
Ctypes.(ptr Types.UDP.Send_request.t @-> error_code @->
returning void)
let get_trampoline =
foreign "luv_get_send_trampoline"
(void @-> returning trampoline)
end
let send =
foreign "uv_udp_send"
(ptr Types.UDP.Send_request.t @->
ptr t @->
ptr Types.Buf.t @->
uint @->
ptr Types.Sockaddr.t @->
Send_request.trampoline @->
returning error_code)
let try_send =
foreign "uv_udp_try_send"
(ptr t @-> ptr Types.Buf.t @-> uint @-> ptr Types.Sockaddr.t @->
returning error_code)
let recv_trampoline =
static_funptr
Ctypes.(
ptr t @->
PosixTypes.ssize_t @->
ptr Types.Buf.t @->
ptr Types.Sockaddr.t @->
uint @->
returning void)
let get_recv_trampoline =
foreign "luv_get_recv_trampoline"
(void @-> returning recv_trampoline)
let recv_start =
foreign "luv_udp_recv_start"
(ptr t @-> Handle.alloc_trampoline @-> recv_trampoline @->
returning error_code)
let recv_stop =
foreign "uv_udp_recv_stop"
(ptr t @-> returning error_code)
let using_recvmmsg =
foreign "uv_udp_using_recvmmsg"
(ptr t @-> returning bool)
let get_send_queue_size =
foreign "uv_udp_get_send_queue_size"
(ptr t @-> returning size_t)
let get_send_queue_count =
foreign "uv_udp_get_send_queue_count"
(ptr t @-> returning size_t)
end
module Process =
struct
let t = Types.Process.t
let exit_cb =
static_funptr
Ctypes.(ptr t @-> int64_t @-> int @-> returning void)
let get_trampoline =
foreign "luv_get_exit_trampoline"
(void @-> returning exit_cb)
let get_null_callback =
foreign "luv_null_exit_trampoline"
(void @-> returning exit_cb)
let disable_stdio_inheritance =
foreign "uv_disable_stdio_inheritance"
(void @-> returning void)
let spawn =
foreign "luv_spawn"
(ptr Loop.t @->
ptr t @->
exit_cb @->
ptr char @->
ptr (ptr char) @->
int @->
ptr (ptr char) @->
int @->
bool @->
ptr char @->
bool @->
int @->
int @->
ptr Types.Process.Redirection.t @->
int @->
int @->
returning error_code)
let process_kill =
foreign "uv_process_kill"
(ptr t @-> int @-> returning error_code)
let kill =
foreign "uv_kill"
(int @-> int @-> returning error_code)
let get_pid =
foreign "uv_process_get_pid"
(ptr t @-> returning int)
end
module FS_event =
struct
let t = Types.FS_event.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> ptr char @-> int @-> error_code @-> returning void)
let get_trampoline =
foreign "luv_get_fs_event_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_fs_event_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "luv_fs_event_start"
(ptr t @-> trampoline @-> ocaml_string @-> int @-> returning error_code)
let stop =
foreign "uv_fs_event_stop"
(ptr t @-> returning error_code)
end
module FS_poll =
struct
let t = Types.FS_poll.t
let trampoline =
static_funptr
Ctypes.(
ptr t @->
error_code @->
ptr Types.File.Stat.t @->
ptr Types.File.Stat.t @->
returning void)
let get_trampoline =
foreign "luv_get_fs_poll_trampoline"
(void @-> returning trampoline)
let init =
foreign "uv_fs_poll_init"
(ptr Loop.t @-> ptr t @-> returning error_code)
let start =
foreign "luv_fs_poll_start"
(ptr t @-> trampoline @-> ocaml_string @-> int @-> returning error_code)
let stop =
foreign "uv_fs_poll_stop"
(ptr t @-> returning error_code)
end
module DNS =
struct
module Addr_info =
struct
let t = Types.DNS.Addr_info.Request.t
let addrinfo = Types.DNS.Addr_info.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> error_code @-> ptr addrinfo @-> returning void)
let get_trampoline =
foreign "luv_get_getaddrinfo_trampoline"
(void @-> returning trampoline)
let getaddrinfo =
foreign "uv_getaddrinfo"
(ptr Loop.t @->
ptr t @->
trampoline @->
string_opt @->
string_opt @->
ptr addrinfo @->
returning error_code)
let free =
foreign "uv_freeaddrinfo"
(ptr addrinfo @-> returning void)
end
module Name_info =
struct
let t = Types.DNS.Name_info.t
let trampoline =
static_funptr
Ctypes.(ptr t @-> error_code @-> string @-> string @-> returning void)
let get_trampoline =
foreign "luv_get_getnameinfo_trampoline"
(void @-> returning trampoline)
let getnameinfo =
foreign "uv_getnameinfo"
(ptr Loop.t @->
ptr t @->
trampoline @->
ptr Types.Sockaddr.t @->
int @->
returning error_code)
end
end
module DLL =
struct
let t = Types.DLL.t
let open_ =
foreign "uv_dlopen"
(ocaml_string @-> ptr t @-> returning bool)
let close =
foreign "uv_dlclose"
(ptr t @-> returning void)
let sym =
foreign "uv_dlsym"
(ptr t @-> ocaml_string @-> ptr (ptr void) @-> returning bool)
let error =
foreign "luv_dlerror"
(ptr t @-> returning string)
end
module Os_fd =
struct
let get_osfhandle =
foreign "uv_get_osfhandle"
(int @-> returning Types.Os_fd.t)
let open_osfhandle =
foreign "uv_open_osfhandle"
(Types.Os_fd.t @-> returning int)
let is_invalid_handle_value =
foreign "luv_is_invalid_handle_value"
(Types.Os_fd.t @-> returning bool)
let is_invalid_socket_value =
foreign "luv_is_invalid_socket_value"
(Types.Os_socket.t @-> returning bool)
end
module Bigstring =
struct
let memcpy_to_bytes =
foreign "memcpy"
(ocaml_bytes @-> ptr char @-> int @-> returning void)
let memcpy_from_bytes =
foreign "memcpy"
(ptr char @-> ocaml_bytes @-> int @-> returning void)
end
module Work =
struct
let t = Types.Work.t
let work_trampoline =
static_funptr
Ctypes.(ptr t @-> returning void)
let after_work_trampoline =
static_funptr
Ctypes.(ptr t @-> int @-> returning void)
let get_work_trampoline =
foreign "luv_get_work_trampoline"
(void @-> returning work_trampoline)
let get_after_work_trampoline =
foreign "luv_get_after_work_trampoline"
(void @-> returning after_work_trampoline)
let get_c_work_trampoline =
foreign "luv_get_c_work_trampoline"
(void @-> returning work_trampoline)
let get_after_c_work_trampoline =
foreign "luv_get_after_c_work_trampoline"
(void @-> returning after_work_trampoline)
let add_c_function_and_argument =
foreign "luv_add_c_function_and_argument"
(ptr t @-> nativeint @-> nativeint @-> returning bool)
let queue =
foreign "uv_queue_work"
(ptr Loop.t @-> ptr t @-> work_trampoline @-> after_work_trampoline @->
returning error_code)
end
module Thread =
struct
let t = Types.Thread.t
let options = Types.Thread.Options.t
let trampoline =
static_funptr
Ctypes.(ptr void @-> returning void)
let get_trampoline =
foreign "luv_get_thread_trampoline"
(void @-> returning trampoline)
let create =
foreign "uv_thread_create_ex"
(ptr t @-> ptr options @-> trampoline @-> ptr void @->
returning error_code)
let create_c =
foreign "luv_thread_create_c"
(ptr t @-> ptr options @-> nativeint @-> nativeint @->
returning error_code)
let self =
foreign "uv_thread_self"
(void @-> returning t)
let equal =
foreign "uv_thread_equal"
(ptr t @-> ptr t @-> returning bool)
let setpriority =
foreign "uv_thread_setpriority"
(t @-> int @-> returning error_code)
let getpriority =
foreign "uv_thread_getpriority"
(t @-> ptr int @-> returning error_code)
let cpumask_size =
foreign "uv_cpumask_size"
(void @-> returning int)
let setaffinity =
foreign "uv_thread_setaffinity"
(ptr t @-> ptr char @-> ptr char @-> size_t @-> returning error_code)
let getaffinity =
foreign "uv_thread_getaffinity"
(ptr t @-> ptr char @-> size_t @-> returning error_code)
let getcpu =
foreign "uv_thread_getcpu"
(void @-> returning int)
end
module TLS =
struct
let t = Types.TLS.t
let create =
foreign "uv_key_create"
(ptr t @-> returning error_code)
let delete =
foreign "uv_key_delete"
(ptr t @-> returning void)
let get =
foreign "uv_key_get"
(ptr t @-> returning (ptr void))
let set =
foreign "uv_key_set"
(ptr t @-> ptr void @-> returning void)
end
module Once =
struct
let t = Types.Once.t
let trampoline =
static_funptr
Ctypes.(void @-> returning void)
let get_trampoline =
foreign "luv_get_once_trampoline"
(void @-> returning trampoline)
let init =
foreign "luv_once_init"
(ptr t @-> returning error_code)
let once =
foreign "uv_once"
(ptr t @-> trampoline @-> returning void)
end
module Mutex =
struct
let t = Types.Mutex.t
let init =
foreign "uv_mutex_init"
(ptr t @-> returning error_code)
let init_recursive =
foreign "uv_mutex_init_recursive"
(ptr t @-> returning error_code)
let destroy =
foreign "uv_mutex_destroy"
(ptr t @-> returning void)
let trylock =
foreign "uv_mutex_trylock"
(ptr t @-> returning error_code)
let unlock =
foreign "uv_mutex_unlock"
(ptr t @-> returning void)
end
module Rwlock =
struct
let t = Types.Rwlock.t
let init =
foreign "uv_rwlock_init"
(ptr t @-> returning error_code)
let destroy =
foreign "uv_rwlock_destroy"
(ptr t @-> returning void)
let tryrdlock =
foreign "uv_rwlock_tryrdlock"
(ptr t @-> returning error_code)
let rdunlock =
foreign "uv_rwlock_rdunlock"
(ptr t @-> returning void)
let trywrlock =
foreign "uv_rwlock_trywrlock"
(ptr t @-> returning error_code)
let wrunlock =
foreign "uv_rwlock_wrunlock"
(ptr t @-> returning void)
end
module Semaphore =
struct
let t = Types.Semaphore.t
let init =
foreign "uv_sem_init"
(ptr t @-> uint @-> returning error_code)
let destroy =
foreign "uv_sem_destroy"
(ptr t @-> returning void)
let post =
foreign "uv_sem_post"
(ptr t @-> returning void)
let trywait =
foreign "uv_sem_trywait"
(ptr t @-> returning error_code)
end
module Condition =
struct
let t = Types.Condition.t
let init =
foreign "uv_cond_init"
(ptr t @-> returning error_code)
let destroy =
foreign "uv_cond_destroy"
(ptr t @-> returning void)
let signal =
foreign "uv_cond_signal"
(ptr t @-> returning void)
let broadcast =
foreign "uv_cond_broadcast"
(ptr t @-> returning void)
end
module Barrier =
struct
let t = Types.Barrier.t
let init =
foreign "uv_barrier_init"
(ptr t @-> uint @-> returning error_code)
let destroy =
foreign "uv_barrier_destroy"
(ptr t @-> returning void)
end
module Sockaddr =
struct
let ip4_addr =
foreign "uv_ip4_addr"
(ocaml_string @-> int @-> ptr Types.Sockaddr.in_ @->
returning error_code)
let ip6_addr =
foreign "uv_ip6_addr"
(ocaml_string @-> int @-> ptr Types.Sockaddr.in6 @->
returning error_code)
let ip4_name =
foreign "uv_ip4_name"
(ptr Types.Sockaddr.in_ @-> ocaml_bytes @-> size_t @->
returning error_code)
let ip6_name =
foreign "uv_ip6_name"
(ptr Types.Sockaddr.in6 @-> ocaml_bytes @-> size_t @->
returning error_code)
let memcpy_from_sockaddr =
foreign "memcpy"
(ptr Types.Sockaddr.storage @-> ptr Types.Sockaddr.t @-> int @->
returning void)
let ntohs =
foreign "ntohs"
(ushort @-> returning ushort)
let sa_family_to_int =
foreign "luv_sa_family_to_int"
(Types.Address_family.t @-> returning int)
end
module Resource =
struct
let resident_set_memory =
foreign "uv_resident_set_memory"
(ptr size_t @-> returning error_code)
let uptime =
foreign "uv_uptime"
(ptr double @-> returning error_code)
let loadavg =
foreign "uv_loadavg"
(ptr double @-> returning void)
let free_memory =
foreign "uv_get_free_memory"
(void @-> returning uint64_t)
let total_memory =
foreign "uv_get_total_memory"
(void @-> returning uint64_t)
let constrained_memory =
foreign "uv_get_constrained_memory"
(void @-> returning uint64_t)
let available_memory =
foreign "uv_get_available_memory"
(void @-> returning uint64_t)
let getpriority =
foreign "uv_os_getpriority"
(int @-> ptr int @-> returning error_code)
let setpriority =
foreign "uv_os_setpriority"
(int @-> int @-> returning error_code)
let getrusage =
foreign "uv_getrusage"
(ptr Types.Resource.Rusage.t @-> returning error_code)
end
module Pid =
struct
let getpid =
foreign "uv_os_getpid"
(void @-> returning int)
let getppid =
foreign "uv_os_getppid"
(void @-> returning int)
end
module CPU_info =
struct
let t = Types.CPU_info.t
let available_parallelism =
foreign "uv_available_parallelism"
(void @-> returning int)
let cpu_info =
foreign "uv_cpu_info"
(ptr (ptr t) @-> ptr int @-> returning error_code)
let free_cpu_info =
foreign "uv_free_cpu_info"
(ptr t @-> int @-> returning void)
end
module Network =
struct
let interface_addresses =
foreign "uv_interface_addresses"
(ptr (ptr Types.Network.Interface_address.t) @-> ptr int @->
returning error_code)
let free_interface_addresses =
foreign "uv_free_interface_addresses"
(ptr Types.Network.Interface_address.t @-> int @-> returning void)
let if_indextoname =
foreign "uv_if_indextoname"
(uint @-> ocaml_bytes @-> ptr size_t @-> returning error_code)
let if_indextoiid =
foreign "uv_if_indextoiid"
(uint @-> ocaml_bytes @-> ptr size_t @-> returning error_code)
let gethostname =
foreign "uv_os_gethostname"
(ocaml_bytes @-> ptr size_t @-> returning error_code)
end
module Path =
struct
let exepath =
foreign "uv_exepath"
(ocaml_bytes @-> ptr size_t @-> returning error_code)
let cwd =
foreign "uv_cwd"
(ocaml_bytes @-> ptr size_t @-> returning error_code)
let chdir =
foreign "uv_chdir"
(ocaml_string @-> returning error_code)
let homedir =
foreign "uv_os_homedir"
(ocaml_bytes @-> ptr size_t @-> returning error_code)
let tmpdir =
foreign "uv_os_tmpdir"
(ocaml_bytes @-> ptr size_t @-> returning error_code)
end
module Passwd =
struct
let t = Types.Passwd.t
let get_passwd =
foreign "uv_os_get_passwd"
(ptr t @-> returning error_code)
let get_passwd2 =
foreign "uv_os_get_passwd2"
(ptr t @-> ulong @-> returning error_code)
let free_passwd =
foreign "uv_os_free_passwd"
(ptr t @-> returning void)
let get_group =
foreign "uv_os_get_group"
(ptr Types.Passwd.group @-> ulong @-> returning error_code)
let free_group =
foreign "uv_os_free_group"
(ptr Types.Passwd.group @-> returning void)
end
module Env =
struct
let getenv =
foreign "uv_os_getenv"
(ocaml_string @-> ocaml_bytes @-> ptr size_t @-> returning error_code)
let setenv =
foreign "uv_os_setenv"
(ocaml_string @-> ocaml_string @-> returning error_code)
let unsetenv =
foreign "uv_os_unsetenv"
(ocaml_string @-> returning error_code)
let environ =
foreign "uv_os_environ"
(ptr (ptr Types.Env_item.t) @-> ptr int @-> returning error_code)
let free_environ =
foreign "uv_os_free_environ"
(ptr Types.Env_item.t @-> int @-> returning void)
end
module Uname =
struct
let uname =
foreign "luv_os_uname"
(ocaml_bytes @-> returning error_code)
end
module Time =
struct
let gettimeofday =
foreign "uv_gettimeofday"
(ptr Types.Time.Timeval.t @-> returning error_code)
let hrtime =
foreign "uv_hrtime"
(void @-> returning uint64_t)
let clock_gettime =
foreign "uv_clock_gettime"
(int @-> ptr Types.Time.Timespec.t @-> returning error_code)
end
module Random =
struct
let request = Types.Random.Request.t
let trampoline =
static_funptr
Ctypes.(ptr request @-> error_code @-> ptr void @-> size_t @->
returning void)
let get_trampoline =
foreign "luv_get_random_trampoline"
(void @-> returning trampoline)
let get_null_callback =
foreign "luv_null_random_trampoline"
(void @-> returning trampoline)
let random =
foreign "uv_random"
(ptr Loop.t @->
ptr request @->
ptr char @->
size_t @->
uint @->
trampoline @->
returning error_code)
end
module Metrics =
struct
let idle_time =
foreign "uv_metrics_idle_time"
(ptr Types.Loop.t @-> returning uint64_t)
let info =
foreign "uv_metrics_info"
(ptr Types.Loop.t @-> ptr Types.Metrics.t @-> returning int)
end
module String_ =
struct
let utf16_length_as_wtf8 =
foreign "luv_utf16_length_as_wtf8"
(string @-> PosixTypes.ssize_t @-> returning size_t)
let utf16_to_wtf8 =
foreign "luv_utf16_to_wtf8"
(string @->
PosixTypes.ssize_t @->
ptr (ptr char) @->
ptr size_t @->
returning error_code)
let wtf8_length_as_utf16 =
foreign "uv_wtf8_length_as_utf16"
(string @-> returning PosixTypes.ssize_t)
let wtf8_to_utf16 =
foreign "uv_wtf8_to_utf16"
(string @-> ptr uint16_t @-> size_t @-> returning void)
let free =
foreign "free"
(ptr void @-> returning void)
end
end
luv-0.5.14/src/c/luv_c_type_descriptions.ml 0000664 0000000 0000000 00000074017 14666340476 0020742 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
(* Everything is in one file to cut down on Dune boilerplate, as it would grow
proportionally in the number of files the bindings are spread over.
https://github.com/ocaml/dune/issues/135. *)
module Descriptions (F : Ctypes.TYPE) =
struct
open Ctypes
open F
module Error =
struct
let e2big = constant "UV_E2BIG" int
let eacces = constant "UV_EACCES" int
let eaddrinuse = constant "UV_EADDRINUSE" int
let eaddrnotavail = constant "UV_EADDRNOTAVAIL" int
let eafnosupport = constant "UV_EAFNOSUPPORT" int
let eagain = constant "UV_EAGAIN" int
let eai_addrfamily = constant "UV_EAI_ADDRFAMILY" int
let eai_again = constant "UV_EAI_AGAIN" int
let eai_badflags = constant "UV_EAI_BADFLAGS" int
let eai_badhints = constant "UV_EAI_BADHINTS" int
let eai_canceled = constant "UV_EAI_CANCELED" int
let eai_fail = constant "UV_EAI_FAIL" int
let eai_family = constant "UV_EAI_FAMILY" int
let eai_memory = constant "UV_EAI_MEMORY" int
let eai_nodata = constant "UV_EAI_NODATA" int
let eai_noname = constant "UV_EAI_NONAME" int
let eai_overflow = constant "UV_EAI_OVERFLOW" int
let eai_protocol = constant "UV_EAI_PROTOCOL" int
let eai_service = constant "UV_EAI_SERVICE" int
let eai_socktype = constant "UV_EAI_SOCKTYPE" int
let ealready = constant "UV_EALREADY" int
let ebadf = constant "UV_EBADF" int
let ebusy = constant "UV_EBUSY" int
let ecanceled = constant "UV_ECANCELED" int
let econnaborted = constant "UV_ECONNABORTED" int
let econnrefused = constant "UV_ECONNREFUSED" int
let econnreset = constant "UV_ECONNRESET" int
let edestaddrreq = constant "UV_EDESTADDRREQ" int
let eexist = constant "UV_EEXIST" int
let efault = constant "UV_EFAULT" int
let efbig = constant "UV_EFBIG" int
let eftype = constant "UV_EFTYPE" int
let ehostunreach = constant "UV_EHOSTUNREACH" int
let eilseq = constant "UV_EILSEQ" int
let eintr = constant "UV_EINTR" int
let einval = constant "UV_EINVAL" int
let eio = constant "UV_EIO" int
let eisconn = constant "UV_EISCONN" int
let eisdir = constant "UV_EISDIR" int
let eloop = constant "UV_ELOOP" int
let emfile = constant "UV_EMFILE" int
let emsgsize = constant "UV_EMSGSIZE" int
let enametoolong = constant "UV_ENAMETOOLONG" int
let enetdown = constant "UV_ENETDOWN" int
let enetunreach = constant "UV_ENETUNREACH" int
let enfile = constant "UV_ENFILE" int
let enobufs = constant "UV_ENOBUFS" int
let enodata = constant "UV_ENODATA" int
let enodev = constant "UV_ENODEV" int
let enoent = constant "UV_ENOENT" int
let enomem = constant "UV_ENOMEM" int
let enonet = constant "UV_ENONET" int
let enoprotoopt = constant "UV_ENOPROTOOPT" int
let enospc = constant "UV_ENOSPC" int
let enosys = constant "UV_ENOSYS" int
let enotconn = constant "UV_ENOTCONN" int
let enotdir = constant "UV_ENOTDIR" int
let enotempty = constant "UV_ENOTEMPTY" int
let enotsock = constant "UV_ENOTSOCK" int
let enotsup = constant "UV_ENOTSUP" int
let enotty = constant "UV_ENOTTY" int
let eoverflow = constant "UV_EOVERFLOW" int
let eperm = constant "UV_EPERM" int
let epipe = constant "UV_EPIPE" int
let eproto = constant "UV_EPROTO" int
let eprotonosupport = constant "UV_EPROTONOSUPPORT" int
let eprototype = constant "UV_EPROTOTYPE" int
let erange = constant "UV_ERANGE" int
let erofs = constant "UV_EROFS" int
let eshutdown = constant "UV_ESHUTDOWN" int
let esocktnosupport = constant "UV_ESOCKTNOSUPPORT" int
let espipe = constant "UV_ESPIPE" int
let esrch = constant "UV_ESRCH" int
let etimedout = constant "UV_ETIMEDOUT" int
let etxtbsy = constant "UV_ETXTBSY" int
let eunatch = constant "UV_EUNATCH" int
let exdev = constant "UV_EXDEV" int
let unknown = constant "UV_UNKNOWN" int
let eof = constant "UV_EOF" int
let enxio = constant "UV_ENXIO" int
let emlink = constant "UV_EMLINK" int
end
module Version =
struct
let major = constant "UV_VERSION_MAJOR" int
let minor = constant "UV_VERSION_MINOR" int
let patch = constant "UV_VERSION_PATCH" int
let is_release = constant "UV_VERSION_IS_RELEASE" bool
let hex = constant "UV_VERSION_HEX" int
(* UV_VERSION_SUFFIX cannot be bound as a constant, so it is bound as a
function returning that constant: C.Functions.Version.suffix. *)
end
module Loop =
struct
module Run_mode =
struct
let default = constant "UV_RUN_DEFAULT" int64_t
let once = constant "UV_RUN_ONCE" int64_t
let nowait = constant "UV_RUN_NOWAIT" int64_t
type t = [
| `DEFAULT
| `ONCE
| `NOWAIT
]
let t : t typ = enum "uv_run_mode" ~typedef:true [
`DEFAULT, default;
`ONCE, once;
`NOWAIT, nowait;
]
end
module Option =
struct
let block_signal = constant "UV_LOOP_BLOCK_SIGNAL" int
let sigprof = constant "SIGPROF" int
let idle_time = constant "UV_METRICS_IDLE_TIME" int
end
type t = [ `Loop ] structure
let t : t typ = typedef (structure "`Loop") "uv_loop_t"
let () = seal t
end
module Metrics =
struct
type t = [ `Metrics ] structure
let t : t typ = typedef (structure "`Metrics") "uv_metrics_t"
let loop_count = field t "loop_count" uint64_t
let events = field t "events" uint64_t
let events_waiting = field t "events_waiting" uint64_t
let () = seal t
end
module Buf =
struct
type t = [ `Buf ] structure
let t : t typ = typedef (structure "`Buf") "uv_buf_t"
let base = field t "base" (ptr char)
let len = field t "len" size_t
let () = seal t
end
module Os_fd =
struct
type t = [ `Os_fd ] structure
let t : t typ = typedef (structure "`Os_fd") "uv_os_fd_t"
let () = seal t
end
module Os_socket =
struct
type t = [ `Os_socket ] structure
let t : t typ = typedef (structure "`Os_socket") "uv_os_sock_t"
let () = seal t
end
module Handle =
struct
module Type =
struct
let tcp = constant "UV_TCP" int
let named_pipe = constant "UV_NAMED_PIPE" int
end
type 'kind handle
type 'kind t = ('kind handle) structure
let t : ([ `Base ] t) typ = typedef (structure "`Handle`") "uv_handle_t"
let () = seal t
let self_reference_index = constant "LUV_SELF_REFERENCE" int
let generic_callback_index = constant "LUV_GENERIC_CALLBACK" int
let close_callback_index = constant "LUV_CLOSE_CALLBACK" int
let default_reference_count = constant "LUV_HANDLE_REFERENCE_COUNT" int
end
module Request =
struct
type 'kind request
type 'kind t = ('kind request) structure
let t : ([ `Base ] t) typ = typedef (structure "`Request") "uv_req_t"
let () = seal t
let default_reference_count = constant "LUV_MINIMUM_REFERENCE_COUNT" int
end
module Timer =
struct
let t : ([ `Timer ] Handle.t) typ =
typedef (structure "`Timer") "uv_timer_t"
let () = seal t
end
module Prepare =
struct
let t : ([ `Prepare ] Handle.t) typ =
typedef (structure "`Prepare") "uv_prepare_t"
let () = seal t
end
module Check =
struct
let t : ([ `Check ] Handle.t) typ =
typedef (structure "`Check") "uv_check_t"
let () = seal t
end
module Idle =
struct
let t : ([ `Idle ] Handle.t) typ =
typedef (structure "`Idle") "uv_idle_t"
let () = seal t
end
module Async =
struct
let t : ([ `Async ] Handle.t) typ =
typedef (structure "`Async") "uv_async_t"
let () = seal t
end
module Poll =
struct
module Event =
struct
let readable = constant "UV_READABLE" int
let writable = constant "UV_WRITABLE" int
let disconnect = constant "UV_DISCONNECT" int
let prioritized = constant "UV_PRIORITIZED" int
end
let t : ([ `Poll ] Handle.t) typ =
typedef (structure "`Poll") "uv_poll_t"
let () = seal t
end
module Signal =
struct
let t : ([ `Signal ] Handle.t) typ =
typedef (structure "`Signal") "uv_signal_t"
let signum = field t "signum" int
let () = seal t
module Signum =
struct
let sigabrt = constant "SIGABRT" int
let sigfpe = constant "SIGFPE" int
let sighup = constant "SIGHUP" int
let sigill = constant "SIGILL" int
let sigint = constant "SIGINT" int
let sigkill = constant "SIGKILL" int
let sigsegv = constant "SIGSEGV" int
let sigterm = constant "SIGTERM" int
let sigwinch = constant "SIGWINCH" int
end
end
module Stream =
struct
type 'kind t = [ `Stream of 'kind ] Handle.t
let t : ([ `Base ] t) typ = typedef (structure "`Stream") "uv_stream_t"
let () = seal t
let somaxconn = constant "SOMAXCONN" nativeint
let reference_count = constant "LUV_STREAM_REFERENCE_COUNT" int
let connection_callback_index = constant "LUV_CONNECTION_CALLBACK" int
let allocate_callback_index = constant "LUV_ALLOCATE_CALLBACK" int
let stream = t
module Connect_request =
struct
type t = [ `Connect ] Request.t
let t : t typ =
typedef (structure "`Connect") "uv_connect_t"
let handle = field t "handle" (ptr stream)
let () = seal t
end
module Shutdown_request =
struct
let t : ([ `Shutdown ] Request.t) typ =
typedef (structure "`Shutdown") "uv_shutdown_t"
let () = seal t
end
module Write_request =
struct
let t : ([` Write ] Request.t) typ =
typedef (structure "`Write") "uv_write_t"
let () = seal t
end
end
module Address_family =
struct
let unspec = constant "AF_UNSPEC" int
let inet = constant "AF_INET" int
let inet6 = constant "AF_INET6" int
type t = [ `Address_family ] structure
let t : t typ = typedef (structure "`Address_family") "sa_family_t"
let () = seal t
end
module Sockaddr =
struct
type t = [ `Sockaddr ] structure
let t : t typ = structure "sockaddr"
let () = seal t
type in_ = [ `Sockaddr_in ] structure
let in_ : in_ typ = structure "sockaddr_in"
let sin_port = field in_ "sin_port" ushort
let () = seal in_
type in6 = [ `Sockaddr_in6 ] structure
let in6 : in6 typ = structure "sockaddr_in6"
let sin6_port = field in6 "sin6_port" ushort
let () = seal in6
type storage = [ `Sockaddr_storage ] structure
let storage : storage typ = structure "sockaddr_storage"
let family = field storage "ss_family" Address_family.t
let () = seal storage
end
module Socket_type =
struct
let stream = constant "SOCK_STREAM" int
let dgram = constant "SOCK_DGRAM" int
let raw = constant "SOCK_RAW" int
end
module TCP =
struct
let ipv6only = constant "UV_TCP_IPV6ONLY" int
let t : ([ `TCP ] Stream.t) typ = typedef (structure "`TCP") "uv_tcp_t"
let () = seal t
end
module File =
struct
module Request =
struct
type t = [ `File ] Request.t
let t : t typ = typedef (structure "`File") "uv_fs_t"
let () = seal t
end
(* This should actually be an abstract type, but it is defined as int on
both Unix and Windows, so this definition is ok until Ctypes is
patched. *)
type t = int
let t : t typ = int
module Open_flag =
struct
let rdonly = constant "UV_FS_O_RDONLY" int
let wronly = constant "UV_FS_O_WRONLY" int
let rdwr = constant "UV_FS_O_RDWR" int
let creat = constant "UV_FS_O_CREAT" int
let excl = constant "UV_FS_O_EXCL" int
let exlock = constant "UV_FS_O_EXLOCK" int
let noctty = constant "UV_FS_O_NOCTTY" int
let nofollow = constant "UV_FS_O_NOFOLLOW" int
let temporary = constant "UV_FS_O_TEMPORARY" int
let trunc = constant "UV_FS_O_TRUNC" int
let append = constant "UV_FS_O_APPEND" int
let direct = constant "UV_FS_O_DIRECT" int
let dsync = constant "UV_FS_O_DSYNC" int
let filemap = constant "UV_FS_O_FILEMAP" int
let noatime = constant "UV_FS_O_NOATIME" int
let nonblock = constant "UV_FS_O_NONBLOCK" int
let random = constant "UV_FS_O_RANDOM" int
let sequential = constant "UV_FS_O_SEQUENTIAL" int
let short_lived = constant "UV_FS_O_SHORT_LIVED" int
let symlink = constant "UV_FS_O_SYMLINK" int
let sync = constant "UV_FS_O_SYNC" int
end
module Mode =
struct
let irwxu = constant "S_IRWXU" int
let irusr = constant "S_IRUSR" int
let iwusr = constant "S_IWUSR" int
let ixusr = constant "S_IXUSR" int
let irwxg = constant "S_IRWXG" int
let irgrp = constant "S_IRGRP" int
let iwgrp = constant "S_IWGRP" int
let ixgrp = constant "S_IXGRP" int
let irwxo = constant "S_IRWXO" int
let iroth = constant "S_IROTH" int
let iwoth = constant "S_IWOTH" int
let ixoth = constant "S_IXOTH" int
let isuid = constant "S_ISUID" int
let isgid = constant "S_ISGID" int
let isvtx = constant "S_ISVTX" int
let ifmt = constant "S_IFMT" int
let ifreg = constant "S_IFREG" int
let ifdir = constant "S_IFDIR" int
let ifblk = constant "S_IFBLK" int
let ifchr = constant "S_IFCHR" int
let iflnk = constant "S_IFLNK" int
let ififo = constant "S_IFIFO" int
end
module Dirent =
struct
module Kind =
struct
let unknown = constant "UV_DIRENT_UNKNOWN" int64_t
let file = constant "UV_DIRENT_FILE" int64_t
let dir = constant "UV_DIRENT_DIR" int64_t
let link = constant "UV_DIRENT_LINK" int64_t
let fifo = constant "UV_DIRENT_FIFO" int64_t
let socket = constant "UV_DIRENT_SOCKET" int64_t
let char = constant "UV_DIRENT_CHAR" int64_t
let block = constant "UV_DIRENT_BLOCK" int64_t
type t = [
| `UNKNOWN
| `FILE
| `DIR
| `LINK
| `FIFO
| `SOCKET
| `CHAR
| `BLOCK
]
let t : t typ =
enum
"uv_dirent_type_t" ~typedef:true ~unexpected:(fun _ -> `UNKNOWN) [
`UNKNOWN, unknown;
`FILE, file;
`DIR, dir;
`LINK, link;
`FIFO, fifo;
`SOCKET, socket;
`CHAR, char;
`BLOCK, block;
]
end
type t = [ `Dirent ] structure
let t : t typ = typedef (structure "`Dirent") "uv_dirent_t"
let name = field t "name" string
let type_ = field t "type" Kind.t
let () = seal t
end
module Dir =
struct
type t = [ `Dir ] structure
let t : t typ = typedef (structure "`Dir") "uv_dir_t"
let dirents = field t "dirents" (ptr Dirent.t)
let nentries = field t "nentries" size_t
let () = seal t
end
module Timespec =
struct
let t : ([ `Timespec ] structure) typ =
typedef (structure "`Timespec") "uv_timespec_t"
let tv_sec = field t "tv_sec" long
let tv_nsec = field t "tv_nsec" long
let () = seal t
end
module Stat =
struct
type t = [ `Stat ] structure
let t : t typ = typedef (structure "`Stat") "uv_stat_t"
let st_dev = field t "st_dev" uint64_t
let st_mode = field t "st_mode" uint64_t
let st_nlink = field t "st_nlink" uint64_t
let st_uid = field t "st_uid" uint64_t
let st_gid = field t "st_gid" uint64_t
let st_rdev = field t "st_rdev" uint64_t
let st_ino = field t "st_ino" uint64_t
let st_size = field t "st_size" uint64_t
let st_blksize = field t "st_blksize" uint64_t
let st_blocks = field t "st_blocks" uint64_t
let st_flags = field t "st_flags" uint64_t
let st_gen = field t "st_gen" uint64_t
let st_atim = field t "st_atim" Timespec.t
let st_mtim = field t "st_mtim" Timespec.t
let st_ctim = field t "st_ctim" Timespec.t
let st_birthtim = field t "st_birthtim" Timespec.t
let () = seal t
end
module Statfs =
struct
type t = [ `Statfs ] structure
let t : t typ = typedef (structure "`Statfs") "uv_statfs_t"
let f_type = field t "f_type" uint64_t
let f_bsize = field t "f_bsize" uint64_t
let f_blocks = field t "f_blocks" uint64_t
let f_bfree = field t "f_bfree" uint64_t
let f_bavail = field t "f_bavail" uint64_t
let f_files = field t "f_files" uint64_t
let f_ffree = field t "f_ffree" uint64_t
let f_spare = field t "f_spare" (array 4 uint64_t)
let () = seal t
end
module Copy_flag =
struct
let excl = constant "UV_FS_COPYFILE_EXCL" int
let ficlone = constant "UV_FS_COPYFILE_FICLONE" int
let ficlone_force = constant "UV_FS_COPYFILE_FICLONE_FORCE" int
end
module Access_flag =
struct
let f = constant "F_OK" int
let r = constant "R_OK" int
let w = constant "W_OK" int
let x = constant "X_OK" int
end
module Symlink_flag =
struct
let dir = constant "UV_FS_SYMLINK_DIR" int
let junction = constant "UV_FS_SYMLINK_JUNCTION" int
end
end
module Pipe =
struct
module Mode =
struct
let readable = Poll.Event.readable
let writable = Poll.Event.writable
end
let t : ([ `Pipe ] Stream.t) typ = typedef (structure "`Pipe") "uv_pipe_t"
let () = seal t
let no_truncate = constant "UV_PIPE_NO_TRUNCATE" int
end
module TTY =
struct
module Mode =
struct
let normal = constant "UV_TTY_MODE_NORMAL" int64_t
let raw = constant "UV_TTY_MODE_RAW" int64_t
let io = constant "UV_TTY_MODE_IO" int64_t
type t = [
| `NORMAL
| `RAW
| `IO
]
let t : t typ =
enum "uv_tty_mode_t" ~typedef:true [
`NORMAL, normal;
`RAW, raw;
`IO, io;
]
end
module Vterm_state =
struct
let supported = constant "UV_TTY_SUPPORTED" int64_t
let unsupported = constant "UV_TTY_UNSUPPORTED" int64_t
type t = [
| `SUPPORTED
| `UNSUPPORTED
]
let t : t typ =
enum "uv_tty_vtermstate_t" ~typedef:true [
`SUPPORTED, supported;
`UNSUPPORTED, unsupported;
]
end
let t : ([ `TTY ] Stream.t) typ = typedef (structure "`TTY") "uv_tty_t"
let () = seal t
end
module UDP =
struct
let t : ([ `UDP ] Handle.t) typ = typedef (structure "`UDP") "uv_udp_t"
let () = seal t
let reference_count = constant "LUV_UDP_REFERENCE_COUNT" int
let allocate_callback_index = constant "LUV_UDP_ALLOCATE_CALLBACK" int
module Send_request =
struct
let t : ([ `Send ] Request.t) typ =
typedef (structure "`Send") "uv_udp_send_t"
let () = seal t
end
module Flag =
struct
let ipv6only = constant "UV_UDP_IPV6ONLY" int
let partial = constant "UV_UDP_PARTIAL" int
let reuseaddr = constant "UV_UDP_REUSEADDR" int
let mmsg_chunk = constant "UV_UDP_MMSG_CHUNK" int
let mmsg_free = constant "UV_UDP_MMSG_FREE" int
let recvmmsg = constant "UV_UDP_RECVMMSG" int
end
module Membership =
struct
let leave_group = constant "UV_LEAVE_GROUP" int64_t
let join_group = constant "UV_JOIN_GROUP" int64_t
type t = [
| `LEAVE_GROUP
| `JOIN_GROUP
]
let t : t typ =
enum "uv_membership" ~typedef:true [
`LEAVE_GROUP, leave_group;
`JOIN_GROUP, join_group;
]
end
end
module Process =
struct
let t : ([ `Process ] Handle.t) typ =
typedef (structure "`Process") "uv_process_t"
let () = seal t
module Flag =
struct
let setuid = constant "UV_PROCESS_SETUID" int
let setgid = constant "UV_PROCESS_SETGID" int
let windows_verbatim_arguments =
constant "UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS" int
let detached = constant "UV_PROCESS_DETACHED" int
let windows_hide = constant "UV_PROCESS_WINDOWS_HIDE" int
let windows_hide_console = constant "UV_PROCESS_WINDOWS_HIDE_CONSOLE" int
let windows_hide_gui = constant "UV_PROCESS_WINDOWS_HIDE_GUI" int
let windows_file_path_exact_name =
constant "UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME" int
end
module Redirection =
struct
type t = [ `Redirection ] structure
let t : t typ =
typedef (structure "`Redirection") "uv_stdio_container_t"
let flags = field t "flags" int
let stream = field t "data.stream" (ptr Handle.t)
let fd = field t "data.fd" int
let () = seal t
let ignore = constant "UV_IGNORE" int
let create_pipe = constant "UV_CREATE_PIPE" int
let inherit_fd = constant "UV_INHERIT_FD" int
let inherit_stream = constant "UV_INHERIT_STREAM" int
let readable_pipe = constant "UV_READABLE_PIPE" int
let writable_pipe = constant "UV_WRITABLE_PIPE" int
let overlapped_pipe = constant "UV_OVERLAPPED_PIPE" int
end
end
module FS_event =
struct
let t : ([ `FS_event ] Handle.t) typ =
typedef (structure "`FS_event") "uv_fs_event_t"
let () = seal t
module Event =
struct
let rename = constant "UV_RENAME" int
let change = constant "UV_CHANGE" int
end
module Flag =
struct
let watch_entry = constant "UV_FS_EVENT_WATCH_ENTRY" int
let stat = constant "UV_FS_EVENT_STAT" int
let recursive = constant "UV_FS_EVENT_RECURSIVE" int
end
end
module FS_poll =
struct
let t : ([ `FS_poll ] Handle.t) typ =
typedef (structure "`FS_poll") "uv_fs_poll_t"
let () = seal t
end
module DNS =
struct
module Addr_info =
struct
let t : ([ `Addrinfo ] structure) typ = structure "addrinfo"
let flags = field t "ai_flags" int
let family = field t "ai_family" int
let socktype = field t "ai_socktype" int
let protocol = field t "ai_protocol" int
let addrlen = field t "ai_addrlen" int
let addr = field t "ai_addr" (ptr Sockaddr.t)
let canonname = field t "ai_canonname" string_opt
let next = field t "ai_next" (ptr t)
let () = seal t
module Request =
struct
let underlying = t
let t : ([ `Addr_info ] Request.t) typ =
typedef (structure "`Addr_info") "uv_getaddrinfo_t"
let addrinfo = field t "addrinfo" (ptr underlying)
let () = seal t
end
module Flag =
struct
let passive = constant "AI_PASSIVE" int
let canonname = constant "AI_CANONNAME" int
let numerichost = constant "AI_NUMERICHOST" int
let numericserv = constant "AI_NUMERICSERV" int
let v4mapped = constant "AI_V4MAPPED" int
let all = constant "AI_ALL" int
let addrconfig = constant "AI_ADDRCONFIG" int
end
end
module Name_info =
struct
let t : ([ `Name_info ] Request.t) typ =
typedef (structure "`Name_info") "uv_getnameinfo_t"
let host = field t "host" char
let service = field t "service" char
let () = seal t
let maxhost = constant "NI_MAXHOST" int
let maxserv = constant "NI_MAXSERV" int
module Flag =
struct
let namereqd = constant "NI_NAMEREQD" int
let dgram = constant "NI_DGRAM" int
let nofqdn = constant "NI_NOFQDN" int
let numerichost = constant "NI_NUMERICHOST" int
let numericserv = constant "NI_NUMERICSERV" int
end
end
end
module DLL =
struct
type t = [ `Lib ] structure
let t : t typ = typedef (structure "`Lib") "uv_lib_t"
let () = seal t
end
module Work =
struct
let t : ([ `Thread_pool ] Request.t) typ =
typedef (structure "`Thread_pool") "uv_work_t"
let () = seal t
let reference_count = constant "LUV_WORK_REFERENCE_COUNT" int
let function_index = constant "LUV_WORK_FUNCTION" int
end
module Thread =
struct
type t = [ `Thread ] structure
let t : t typ = typedef (structure "`Thread") "uv_thread_t"
let () = seal t
module Options =
struct
type t = [ `Thread_options ] structure
let t : t typ =
typedef (structure "`Thread_options") "uv_thread_options_t"
let flags = field t "flags" int
let stack_size = field t "stack_size" size_t
let () = seal t
let no_flags = constant "UV_THREAD_NO_FLAGS" int
let has_stack_size = constant "UV_THREAD_HAS_STACK_SIZE" int
end
module Priority =
struct
let highest = constant "UV_THREAD_PRIORITY_HIGHEST" int
let above_normal = constant "UV_THREAD_PRIORITY_ABOVE_NORMAL" int
let normal = constant "UV_THREAD_PRIORITY_NORMAL" int
let below_normal = constant "UV_THREAD_PRIORITY_BELOW_NORMAL" int
let lowest = constant "UV_THREAD_PRIORITY_LOWEST" int
end
end
module TLS =
struct
type t = [ `TLS ] structure
let t : t typ = typedef (structure "`TLS") "uv_key_t"
let () = seal t
end
module Once =
struct
type t = [ `Once ] structure
let t : t typ = typedef (structure "`Once") "uv_once_t"
let () = seal t
end
module Mutex =
struct
type t = [ `Mutex ] structure
let t : t typ = typedef (structure "`Mutex") "uv_mutex_t"
let () = seal t
end
module Rwlock =
struct
type t = [ `Rwlock ] structure
let t : t typ = typedef (structure "`Rwlock") "uv_rwlock_t"
let () = seal t
end
module Semaphore =
struct
type t = [ `Semaphore ] structure
let t : t typ = typedef (structure "`Semaphore") "uv_sem_t"
let () = seal t
end
module Condition =
struct
type t = [ `Condition ] structure
let t : t typ = typedef (structure "`Condition") "uv_cond_t"
let () = seal t
end
module Barrier =
struct
type t = [ `Barrier ] structure
let t : t typ = typedef (structure "`Barrier") "uv_barrier_t"
let () = seal t
end
module Resource =
struct
module Priority =
struct
let low = constant "UV_PRIORITY_LOW" int
let below_normal = constant "UV_PRIORITY_BELOW_NORMAL" int
let normal = constant "UV_PRIORITY_NORMAL" int
let above_normal = constant "UV_PRIORITY_ABOVE_NORMAL" int
let high = constant "UV_PRIORITY_HIGH" int
let highest = constant "UV_PRIORITY_HIGHEST" int
end
module Timeval =
struct
let t : ([ `Timeval ] structure) typ =
typedef (structure "`Timeval") "uv_timeval_t"
let sec = field t "tv_sec" long
let usec = field t "tv_usec" long
let () = seal t
end
module Rusage =
struct
let t : ([ `Rusage ] structure) typ =
typedef (structure "`Rusage") "uv_rusage_t"
let utime = field t "ru_utime" Timeval.t
let stime = field t "ru_stime" Timeval.t
let maxrss = field t "ru_maxrss" uint64_t
let ixrss = field t "ru_ixrss" uint64_t
let idrss = field t "ru_idrss" uint64_t
let isrss = field t "ru_isrss" uint64_t
let minflt = field t "ru_minflt" uint64_t
let majflt = field t "ru_majflt" uint64_t
let nswap = field t "ru_nswap" uint64_t
let inblock = field t "ru_inblock" uint64_t
let oublock = field t "ru_oublock" uint64_t
let msgsnd = field t "ru_msgsnd" uint64_t
let msgrcv = field t "ru_msgrcv" uint64_t
let nsignals = field t "ru_nsignals" uint64_t
let nvcsw = field t "ru_nvcsw" uint64_t
let nivcsw = field t "ru_nivcsw" uint64_t
let () = seal t
end
end
module CPU_info =
struct
module Times =
struct
let t : ([ `Times ] structure) typ = structure "uv_cpu_times_s"
let user = field t "user" uint64_t
let nice = field t "nice" uint64_t
let sys = field t "sys" uint64_t
let idle = field t "idle" uint64_t
let irq = field t "irq" uint64_t
let () = seal t
end
let t : ([ `CPU_info ] structure) typ =
typedef (structure "`CPU_info") "uv_cpu_info_t"
let model = field t "model" string
let speed = field t "speed" int
let times = field t "cpu_times" Times.t
let () = seal t
end
module Network =
struct
module Interface_address =
struct
let t : ([ `Interface_address ] structure) typ =
structure "uv_interface_address_s"
let name = field t "name" string
let phys_addr = field t "phys_addr" (array 6 char)
let is_internal = field t "is_internal" bool
let address4 = field t "address.address4" Sockaddr.in_
let address6 = field t "address.address6" Sockaddr.in6
let netmask4 = field t "netmask.netmask4" Sockaddr.in_
let netmask6 = field t "netmask.netmask6" Sockaddr.in6
let () = seal t
end
let if_namesize = constant "UV_IF_NAMESIZE" int
let maxhostnamesize = constant "UV_MAXHOSTNAMESIZE" int
end
module Passwd =
struct
let t : ([ `Passwd ] structure) typ =
typedef (structure "`Passwd") "uv_passwd_t"
let username = field t "username" string
let uid = field t "uid" ulong
let gid = field t "gid" ulong
let shell = field t "shell" string_opt
let homedir = field t "homedir" string
let () = seal t
let group : ([ `Group ] structure) typ =
typedef (structure "`Group") "uv_group_t"
let groupname = field group "groupname" string
let group_gid = field group "gid" ulong
let members = field group "members" (ptr (ptr char))
let () = seal group
end
module Time =
struct
module Timeval =
struct
let t : ([ `Timeval64 ] structure) typ =
typedef (structure "`Timeval64") "uv_timeval64_t"
let sec = field t "tv_sec" int64_t
let usec = field t "tv_usec" int32_t
let () = seal t
end
module Timespec =
struct
let t : ([ `Timespec ] structure) typ =
typedef (structure "`Timespec64") "uv_timespec64_t"
let sec = field t "tv_sec" int64_t
let nsec = field t "tv_nsec" int32_t
let () = seal t
let monotonic = constant "UV_CLOCK_MONOTONIC" int
let real_time = constant "UV_CLOCK_REALTIME" int
end
end
module Env_item =
struct
let t : ([ `Env_item ] structure) typ =
typedef (structure "`Env_item") "uv_env_item_t"
let name = field t "name" string
let value = field t "value" string
let () = seal t
end
module Random =
struct
module Request =
struct
type t = [ `Random ] Request.t
let t : t typ = typedef (structure "`Random") "uv_random_t"
let () = seal t
end
end
end
luv-0.5.14/src/c/luv_c_types.ml 0000664 0000000 0000000 00000000347 14666340476 0016332 0 ustar 00root root 0000000 0000000 (* This file is part of Luv, released under the MIT license. See LICENSE.md for
details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md. *)
include Luv_c_type_descriptions.Descriptions (Luv_c_generated_types)
luv-0.5.14/src/c/shims.h 0000664 0000000 0000000 00000047241 14666340476 0014744 0 ustar 00root root 0000000 0000000 // This file is part of Luv, released under the MIT license. See LICENSE.md for
// details, or visit https://github.com/aantron/luv/blob/master/LICENSE.md.
// Shims must be declared in increasing order of version, because some shims
// define functions or constants then used by later shims.
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 6
static int uv_os_homedir(char *buffer, size_t *size)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 7
#define UV_VERSION_HEX \
((UV_VERSION_MAJOR << 16) | \
(UV_VERSION_MINOR << 8) | \
(UV_VERSION_PATCH))
static int uv_tcp_init_ex(
uv_loop_t *loop, uv_tcp_t *tcp, unsigned int flags)
{
if (flags != 0)
return ENOSYS;
return uv_tcp_init(loop, tcp);
}
static int uv_udp_init_ex(
uv_loop_t *loop, uv_udp_t *udp, unsigned int flags)
{
if ((flags & 0xFF) != 0)
return ENOSYS;
return uv_udp_init(loop, udp);
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 8
static int uv_fs_realpath(
uv_loop_t *loop, uv_fs_t *request, const char *path, uv_fs_cb callback)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 9
#define UV_DISCONNECT 0
static int uv_os_tmpdir(char *buffer, size_t *size)
{
return ENOSYS;
}
typedef struct {
char *username;
unsigned long uid;
unsigned long gid;
char *shell;
char *homedir;
} uv_passwd_t;
static int uv_os_get_passwd(uv_passwd_t *passwd)
{
return ENOSYS;
}
static void uv_os_free_passwd(uv_passwd_t *passwd)
{
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 10
static int uv_translate_sys_error(int sys_error)
{
return 0x3242424;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 12
static int uv_loop_fork(uv_loop_t* loop)
{
return ENOSYS;
}
static int uv_signal_start_oneshot(
uv_signal_t *signal, uv_signal_cb callback, int number)
{
return ENOSYS;
}
static uv_os_fd_t uv_get_osfhandle(int fd)
{
return (uv_os_fd_t)-1;
}
static int uv_os_getenv(const char *name, char *buffer, size_t *size)
{
return ENOSYS;
}
static int uv_os_setenv(const char *name, const char *value)
{
return ENOSYS;
}
static int uv_os_unsetenv(const char *name)
{
return ENOSYS;
}
static int uv_os_gethostname(char *buffer, size_t *size)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 14
#define UV_PRIORITIZED 0
#define UV_FS_COPYFILE_EXCL 0
static int uv_fs_copyfile(
uv_loop_t *loop, uv_fs_t *request, const char *path,
const char *new_path, int flags, uv_fs_cb callback)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 15
static int uv_mutex_init_recursive(uv_mutex_t *mutex)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 16
#define UV_ENOTTY 0x2242424
// UV_FS_O_* flag definitions directly taken from uv/unix.h and uv/win.h as
// of libuv 1.41.0.
#if defined(_WIN32)
#define UV_FS_O_APPEND _O_APPEND
#define UV_FS_O_CREAT _O_CREAT
#define UV_FS_O_DIRECT 0x02000000
#define UV_FS_O_DSYNC 0x04000000
#define UV_FS_O_EXCL _O_EXCL
#define UV_FS_O_EXLOCK 0x10000000
#define UV_FS_O_NOATIME 0
#define UV_FS_O_NOCTTY 0
#define UV_FS_O_NOFOLLOW 0
#define UV_FS_O_NONBLOCK 0
#define UV_FS_O_RANDOM _O_RANDOM
#define UV_FS_O_RDONLY _O_RDONLY
#define UV_FS_O_RDWR _O_RDWR
#define UV_FS_O_SEQUENTIAL _O_SEQUENTIAL
#define UV_FS_O_SHORT_LIVED _O_SHORT_LIVED
#define UV_FS_O_SYMLINK 0
#define UV_FS_O_SYNC 0x08000000
#define UV_FS_O_TEMPORARY _O_TEMPORARY
#define UV_FS_O_TRUNC _O_TRUNC
#define UV_FS_O_WRONLY _O_WRONLY
#else
#if defined(O_APPEND)
#define UV_FS_O_APPEND O_APPEND
#else
#define UV_FS_O_APPEND 0
#endif
#if defined(O_CREAT)
#define UV_FS_O_CREAT O_CREAT
#else
#define UV_FS_O_CREAT 0
#endif
#if defined(__linux__) && defined(__arm__)
#define UV_FS_O_DIRECT 0x10000
#elif defined(__linux__) && defined(__m68k__)
#define UV_FS_O_DIRECT 0x10000
#elif defined(__linux__) && defined(__mips__)
#define UV_FS_O_DIRECT 0x08000
#elif defined(__linux__) && defined(__powerpc__)
#define UV_FS_O_DIRECT 0x20000
#elif defined(__linux__) && defined(__s390x__)
#define UV_FS_O_DIRECT 0x04000
#elif defined(__linux__) && defined(__x86_64__)
#define UV_FS_O_DIRECT 0x04000
#elif defined(O_DIRECT)
#define UV_FS_O_DIRECT O_DIRECT
#else
#define UV_FS_O_DIRECT 0
#endif
#if defined(O_DSYNC)
#define UV_FS_O_DSYNC O_DSYNC
#else
#define UV_FS_O_DSYNC 0
#endif
#if defined(O_EXCL)
#define UV_FS_O_EXCL O_EXCL
#else
#define UV_FS_O_EXCL 0
#endif
#if defined(O_EXLOCK)
#define UV_FS_O_EXLOCK O_EXLOCK
#else
#define UV_FS_O_EXLOCK 0
#endif
#if defined(O_NOATIME)
#define UV_FS_O_NOATIME O_NOATIME
#else
#define UV_FS_O_NOATIME 0
#endif
#if defined(O_NOCTTY)
#define UV_FS_O_NOCTTY O_NOCTTY
#else
#define UV_FS_O_NOCTTY 0
#endif
#if defined(O_NOFOLLOW)
#define UV_FS_O_NOFOLLOW O_NOFOLLOW
#else
#define UV_FS_O_NOFOLLOW 0
#endif
#if defined(O_NONBLOCK)
#define UV_FS_O_NONBLOCK O_NONBLOCK
#else
#define UV_FS_O_NONBLOCK 0
#endif
#define UV_FS_O_RANDOM 0
#if defined(O_RDONLY)
#define UV_FS_O_RDONLY O_RDONLY
#else
#define UV_FS_O_RDONLY 0
#endif
#if defined(O_RDWR)
#define UV_FS_O_RDWR O_RDWR
#else
#define UV_FS_O_RDWR 0
#endif
#define UV_FS_O_SEQUENTIAL 0
#define UV_FS_O_SHORT_LIVED 0
#if defined(O_SYMLINK)
#define UV_FS_O_SYMLINK O_SYMLINK
#else
#define UV_FS_O_SYMLINK 0
#endif
#if defined(O_SYNC)
#define UV_FS_O_SYNC O_SYNC
#else
#define UV_FS_O_SYNC 0
#endif
#define UV_FS_O_TEMPORARY 0
#if defined(O_TRUNC)
#define UV_FS_O_TRUNC O_TRUNC
#else
#define UV_FS_O_TRUNC 0
#endif
#if defined(O_WRONLY)
#define UV_FS_O_WRONLY O_WRONLY
#else
#define UV_FS_O_WRONLY 0
#endif
#endif
#if defined(IF_NAMESIZE)
#define UV_IF_NAMESIZE (IF_NAMESIZE + 1)
#elif defined(IFNAMSIZ)
#define UV_IF_NAMESIZE (IFNAMSIZ + 1)
#else
#define UV_IF_NAMESIZE (16 + 1)
#endif
static int uv_pipe_chmod(uv_pipe_t *pipe, int flags)
{
return ENOSYS;
}
typedef int uv_pid_t;
static uv_pid_t uv_os_getppid(void)
{
return (uv_pid_t)-1;
}
static int uv_if_indextoname(
unsigned int interface, char *buffer, size_t *size)
{
return ENOSYS;
}
static int uv_if_indextoiid(
unsigned int interface, char *buffer, size_t *size)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 18
static uv_pid_t uv_os_getpid(void)
{
return (uv_pid_t)-1;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 19
static uv_loop_t* uv_handle_get_loop(const uv_handle_t *handle)
{
return handle->loop;
}
static void* uv_handle_get_data(const uv_handle_t *handle)
{
return handle->data;
}
static void* uv_handle_set_data(uv_handle_t *handle, void *data)
{
handle->data = data;
return data;
}
static void* uv_req_get_data(const uv_req_t *request)
{
return request->data;
}
static void* uv_req_set_data(uv_req_t *request, void *data)
{
request->data = data;
return data;
}
static const char* uv_req_type_name(uv_req_type type)
{
return NULL;
}
static size_t uv_stream_get_write_queue_size(const uv_stream_t *stream)
{
return stream->write_queue_size;
}
static size_t uv_udp_get_send_queue_size(const uv_udp_t *udp)
{
return udp->send_queue_size;
}
static size_t uv_udp_get_send_queue_count(const uv_udp_t *udp)
{
return udp->send_queue_count;
}
static uv_pid_t uv_process_get_pid(const uv_process_t *process)
{
return process->pid;
}
static ssize_t uv_fs_get_result(const uv_fs_t *request)
{
return request->result;
}
static void* uv_fs_get_ptr(const uv_fs_t *request)
{
return request->ptr;
}
static const char* uv_fs_get_path(const uv_fs_t *request)
{
return request->path;
}
static uv_stat_t* uv_fs_get_statbuf(uv_fs_t *request)
{
return &request->statbuf;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 20
#define UV_FS_COPYFILE_FICLONE 0
#define UV_FS_COPYFILE_FICLONE_FORCE 0
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 21
#define UV_EFTYPE 0x1242424
#define UV_OVERLAPPED_PIPE 0
static int uv_fs_lchown(
uv_loop_t *loop, uv_fs_t *request, const char *path, uv_uid_t user,
uv_gid_t group, uv_fs_cb callback)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 22
static char* uv_strerror_r(int error, char *buffer, size_t length)
{
strncpy(buffer, uv_strerror(error), length - 1);
buffer[length - 1] = 0;
return buffer;
}
static char* uv_err_name_r(int error, char *buffer, size_t length)
{
strncpy(buffer, uv_err_name(error), length - 1);
buffer[length - 1] = 0;
return buffer;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 23
static int uv_open_osfhandle(uv_os_fd_t os_fd)
{
return (int)-1;
}
#define UV_PRIORITY_LOW 19
#define UV_PRIORITY_BELOW_NORMAL 10
#define UV_PRIORITY_NORMAL 0
#define UV_PRIORITY_ABOVE_NORMAL -7
#define UV_PRIORITY_HIGH -14
#define UV_PRIORITY_HIGHEST -20
static int uv_os_getpriority(uv_pid_t pid, int *priority)
{
return ENOSYS;
}
static int uv_os_setpriority(uv_pid_t pid, int priority)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 24
#define UV_PROCESS_WINDOWS_HIDE_CONSOLE 0
#define UV_PROCESS_WINDOWS_HIDE_GUI 0
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 25
typedef struct {
char sysname[256];
char release[256];
char version[256];
char machine[256];
} uv_utsname_t;
static int uv_os_uname(uv_utsname_t *buffer)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 26
typedef struct {
enum {
UV_THREAD_NO_FLAGS = 0x00,
UV_THREAD_HAS_STACK_SIZE = 0x01
} flags;
size_t stack_size;
} uv_thread_options_t;
static int uv_thread_create_ex(
uv_thread_t *id, const uv_thread_options_t *options, uv_thread_cb entry,
void* argument)
{
return uv_thread_create(id, entry, argument);
}
#ifdef MAXHOSTNAMELEN
#define UV_MAXHOSTNAMESIZE (MAXHOSTNAMELEN + 1)
#else
#define UV_MAXHOSTNAMESIZE 256
#endif
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 27
static int uv_udp_connect(uv_udp_t *udp, const struct sockaddr *addr)
{
return ENOSYS;
}
static int uv_udp_getpeername(
const uv_udp_t *udp, struct sockaddr *name, int *namelen)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 28
typedef struct {int64_t tv_sec; int32_t tv_usec;} uv_timeval64_t;
static int uv_gettimeofday(uv_timeval64_t *tv)
{
return ENOSYS;
}
typedef struct {uv_dirent_t *dirents; size_t nentries;} uv_dir_t;
static int uv_fs_opendir(
uv_loop_t *loop, uv_fs_t *request, const char *path, uv_fs_cb callback)
{
return ENOSYS;
}
static int uv_fs_closedir(
uv_loop_t *loop, uv_fs_t *request, uv_dir_t *dir, uv_fs_cb callback)
{
return ENOSYS;
}
static int uv_fs_readdir(
uv_loop_t *loop, uv_fs_t *request, uv_dir_t* dir, uv_fs_cb callback)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 29
static uint64_t uv_get_constrained_memory(void)
{
return 0;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 31
#define UV_FS_O_FILEMAP 0
typedef struct {
uint64_t f_type;
uint64_t f_bsize;
uint64_t f_blocks;
uint64_t f_bfree;
uint64_t f_bavail;
uint64_t f_files;
uint64_t f_ffree;
uint64_t f_spare[4];
} uv_statfs_t;
static int uv_fs_statfs(
uv_loop_t *loop, uv_fs_t *request, const char* path, uv_fs_cb callback)
{
return ENOSYS;
}
typedef struct {char *name; char *value;} uv_env_item_t;
static int uv_os_environ(uv_env_item_t **items, int *count)
{
return ENOSYS;
}
static void uv_os_free_environ(uv_env_item_t *items, int count)
{
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 32
#define UV_EILSEQ 0x0242424
static int uv_tcp_close_reset(uv_tcp_t *handle, uv_close_cb close_callback)
{
return ENOSYS;
}
static int uv_udp_set_source_membership(
uv_udp_t *handle, const char *multicast_addr,
const char *interface_addr, const char *source_addr,
uv_membership membership)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 33
typedef int uv_random_t;
typedef void (*uv_random_cb)(
uv_random_t *request, int status, void* buffer, size_t length);
static int uv_random(
uv_loop_t *loop, uv_random_t *request, void *buffer, size_t length,
unsigned int flags, uv_random_cb callback)
{
return ENOSYS;
}
typedef enum {UV_TTY_SUPPORTED, UV_TTY_UNSUPPORTED} uv_tty_vtermstate_t;
static void uv_tty_set_vterm_state(uv_tty_vtermstate_t state)
{
}
static int uv_tty_get_vterm_state(uv_tty_vtermstate_t *state)
{
return ENOTSUP;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 34
static int uv_fs_mkstemp(
uv_loop_t *loop, uv_fs_t *request, const char *template,
uv_fs_cb callback)
{
return ENOSYS;
}
static void uv_sleep(unsigned int msec)
{
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 35
#define UV_UDP_MMSG_CHUNK 0
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 36
static int uv_fs_lutime(
uv_loop_t *loop, uv_fs_t *request, const char *path, double atime,
double mtime, uv_fs_cb callback)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 37
#define UV_UDP_RECVMMSG 0
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 38
static void uv_library_shutdown(void)
{
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 39
#define UV_METRICS_IDLE_TIME 0
static uint64_t uv_metrics_idle_time(uv_loop_t *loop)
{
return 0;
}
static int uv_udp_using_recvmmsg(uv_udp_t *udp)
{
return 0;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 40
#define UV_UDP_MMSG_FREE 0
static uint64_t uv_timer_get_due_in(const uv_timer_t *timer)
{
return 0;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 41
static int uv_pipe(uv_file pipes[2], int read_flags, int write_flags)
{
return ENOSYS;
}
static int uv_socketpair(
int type, int protocol, uv_os_sock_t sockets[2], int fst_flags,
int snd_flags)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 42
#define UV_EOVERFLOW 0x4242424
#define UV_ESOCKTNOSUPPORT 0x5242424
static int uv_try_write2(
uv_stream_t *stream, const uv_buf_t *bufs, unsigned int nbufs,
uv_stream_t *send_handle)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 44
static int uv_available_parallelism(void)
{
return 1;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 45
static int uv_cpumask_size(void)
{
return ENOSYS;
}
static int uv_thread_setaffinity(
uv_thread_t *id, char *mask, char *old_mask, size_t mask_size)
{
return ENOSYS;
}
static int uv_thread_getaffinity(
uv_thread_t *id, char *mask, size_t mask_size)
{
return ENOSYS;
}
#define UV_ENODATA 0x6242424
typedef struct {
uint64_t loop_count;
uint64_t events;
uint64_t events_waiting;
uint64_t* reserved[13];
} uv_metrics_t;
static int uv_metrics_info(uv_loop_t *loop, uv_metrics_t *metrics)
{
return ENOSYS;
}
static int uv_thread_getcpu(void)
{
return ENOSYS;
}
static uint64_t uv_get_available_memory(void)
{
return 0;
}
static int uv_os_get_passwd2(uv_passwd_t *passwd, unsigned long uid)
{
return ENOSYS;
}
typedef struct {
char *groupname;
unsigned long gid;
char **members;
} uv_group_t;
static int uv_os_get_group(uv_group_t *group, unsigned long gid)
{
return ENOSYS;
}
static void uv_os_free_group(uv_group_t *group)
{
}
typedef struct {
int64_t tv_sec;
int32_t tv_nsec;
} uv_timespec64_t;
#define UV_CLOCK_MONOTONIC 0
#define UV_CLOCK_REALTIME 0
static int uv_clock_gettime(int clock_id, uv_timespec64_t *time)
{
return ENOSYS;
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 46
#define UV_PIPE_NO_TRUNCATE 0
static int uv_pipe_bind2(
uv_pipe_t *pipe, const char *name, size_t namelen, unsigned int flags)
{
return ENOSYS;
}
static int uv_pipe_connect2(
uv_connect_t *request, uv_pipe_t *pipe, const char *name,
size_t namelen, unsigned int flags, uv_connect_cb callback)
{
return ENOSYS;
}
#define UV_EUNATCH 0x7242424
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 47
static size_t uv_utf16_length_as_wtf8(
const uint16_t *utf16, ssize_t utf16_len)
{
return ENOSYS;
}
static int uv_utf16_to_wtf8(
const uint16_t *utf16, ssize_t utf16_len, char **wtf8_ptr,
size_t *wtf8_len_ptr)
{
return ENOSYS;
}
static ssize_t uv_wtf8_length_as_utf16(const char *wtf8)
{
return ENOSYS;
}
static void uv_wtf8_to_utf16(
const char *utf8, uint16_t *utf16, size_t utf16_len)
{
abort();
}
#endif
#if UV_VERSION_MAJOR == 1 && UV_VERSION_MINOR < 48
enum {
UV_THREAD_PRIORITY_HIGHEST = 2,
UV_THREAD_PRIORITY_ABOVE_NORMAL = 1,
UV_THREAD_PRIORITY_NORMAL = 0,
UV_THREAD_PRIORITY_BELOW_NORMAL = -1,
UV_THREAD_PRIORITY_LOWEST = -2,
};
static int uv_thread_setpriority(uv_thread_t id, int priority)
{
return ENOSYS;
}
static int uv_thread_getpriority(uv_thread_t id, int *priority)
{
return ENOSYS;
}
#define UV_PROCESS_WINDOWS_FILE_PATH_EXACT_NAME 0
#endif
luv-0.5.14/src/c/uv/ 0000775 0000000 0000000 00000000000 14666340476 0014072 5 ustar 00root root 0000000 0000000 luv-0.5.14/src/c/uv/dune 0000664 0000000 0000000 00000001345 14666340476 0014753 0 ustar 00root root 0000000 0000000 (rule (copy ../vendor/libuv/include/uv/aix.h aix.h))
(rule (copy ../vendor/libuv/include/uv/bsd.h bsd.h))
(rule (copy ../vendor/libuv/include/uv/darwin.h darwin.h))
(rule (copy ../vendor/libuv/include/uv/errno.h errno.h))
(rule (copy ../vendor/libuv/include/uv/linux.h linux.h))
(rule (copy ../vendor/libuv/include/uv/os390.h os390.h))
(rule (copy ../vendor/libuv/include/uv/posix.h posix.h))
(rule (copy ../vendor/libuv/include/uv/sunos.h sunos.h))
(rule (copy ../vendor/libuv/include/uv/threadpool.h threadpool.h))
(rule (copy ../vendor/libuv/include/uv/tree.h tree.h))
(rule (copy ../vendor/libuv/include/uv/unix.h unix.h))
(rule (copy ../vendor/libuv/include/uv/version.h version.h))
(rule (copy ../vendor/libuv/include/uv/win.h win.h))
luv-0.5.14/src/c/vendor/ 0000775 0000000 0000000 00000000000 14666340476 0014735 5 ustar 00root root 0000000 0000000 luv-0.5.14/src/c/vendor/configure/ 0000775 0000000 0000000 00000000000 14666340476 0016716 5 ustar 00root root 0000000 0000000 luv-0.5.14/src/c/vendor/configure/Makefile.in 0000664 0000000 0000000 00002460542 14666340476 0021000 0 ustar 00root root 0000000 0000000 # Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
# Copyright (c) 2013, Ben Noordhuis
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
# Can't be turned into a CC_CHECK_CFLAGS in configure.ac, it makes compilers
# on other platforms complain that the argument is unused during compilation.
@SUNOS_TRUE@am__append_1 = -pthreads
@WINNT_TRUE@am__append_2 = include/uv/win.h include/uv/tree.h
@WINNT_TRUE@am__append_3 = -I$(top_srcdir)/src/win \
@WINNT_TRUE@ -DWIN32_LEAN_AND_MEAN \
@WINNT_TRUE@ -D_WIN32_WINNT=0x0602
@WINNT_TRUE@am__append_4 = src/win/async.c \
@WINNT_TRUE@ src/win/atomicops-inl.h \
@WINNT_TRUE@ src/win/core.c \
@WINNT_TRUE@ src/win/detect-wakeup.c \
@WINNT_TRUE@ src/win/dl.c \
@WINNT_TRUE@ src/win/error.c \
@WINNT_TRUE@ src/win/fs-event.c \
@WINNT_TRUE@ src/win/fs.c \
@WINNT_TRUE@ src/win/getaddrinfo.c \
@WINNT_TRUE@ src/win/getnameinfo.c \
@WINNT_TRUE@ src/win/handle.c \
@WINNT_TRUE@ src/win/handle-inl.h \
@WINNT_TRUE@ src/win/internal.h \
@WINNT_TRUE@ src/win/loop-watcher.c \
@WINNT_TRUE@ src/win/pipe.c \
@WINNT_TRUE@ src/win/poll.c \
@WINNT_TRUE@ src/win/process-stdio.c \
@WINNT_TRUE@ src/win/process.c \
@WINNT_TRUE@ src/win/req-inl.h \
@WINNT_TRUE@ src/win/signal.c \
@WINNT_TRUE@ src/win/stream.c \
@WINNT_TRUE@ src/win/stream-inl.h \
@WINNT_TRUE@ src/win/tcp.c \
@WINNT_TRUE@ src/win/thread.c \
@WINNT_TRUE@ src/win/tty.c \
@WINNT_TRUE@ src/win/udp.c \
@WINNT_TRUE@ src/win/util.c \
@WINNT_TRUE@ src/win/winapi.c \
@WINNT_TRUE@ src/win/winapi.h \
@WINNT_TRUE@ src/win/winsock.c \
@WINNT_TRUE@ src/win/winsock.h
@WINNT_FALSE@am__append_5 = include/uv/unix.h
@WINNT_FALSE@am__append_6 = -I$(top_srcdir)/src/unix
@WINNT_FALSE@am__append_7 = src/unix/async.c \
@WINNT_FALSE@ src/unix/core.c \
@WINNT_FALSE@ src/unix/dl.c \
@WINNT_FALSE@ src/unix/fs.c \
@WINNT_FALSE@ src/unix/getaddrinfo.c \
@WINNT_FALSE@ src/unix/getnameinfo.c \
@WINNT_FALSE@ src/unix/internal.h \
@WINNT_FALSE@ src/unix/loop-watcher.c \
@WINNT_FALSE@ src/unix/loop.c \
@WINNT_FALSE@ src/unix/pipe.c \
@WINNT_FALSE@ src/unix/poll.c \
@WINNT_FALSE@ src/unix/process.c \
@WINNT_FALSE@ src/unix/random-devurandom.c \
@WINNT_FALSE@ src/unix/signal.c \
@WINNT_FALSE@ src/unix/stream.c \
@WINNT_FALSE@ src/unix/tcp.c \
@WINNT_FALSE@ src/unix/thread.c \
@WINNT_FALSE@ src/unix/tty.c \
@WINNT_FALSE@ src/unix/udp.c
TESTS = test/run-tests$(EXEEXT)
check_PROGRAMS = test/run-tests$(EXEEXT)
# Can't be turned into a CC_CHECK_CFLAGS in configure.ac, it makes compilers
# on other platforms complain that the argument is unused during compilation.
@SUNOS_TRUE@am__append_8 = -pthreads
@WINNT_TRUE@am__append_9 = test/runner-win.c \
@WINNT_TRUE@ test/runner-win.h
@WINNT_FALSE@am__append_10 = test/runner-unix.c \
@WINNT_FALSE@ test/runner-unix.h
@AIX_TRUE@am__append_11 = -D_ALL_SOURCE \
@AIX_TRUE@ -D_XOPEN_SOURCE=500 \
@AIX_TRUE@ -D_LINUX_SOURCE_COMPAT
@OS400_TRUE@am__append_12 = -D_ALL_SOURCE \
@OS400_TRUE@ -D_XOPEN_SOURCE=500 \
@OS400_TRUE@ -D_LINUX_SOURCE_COMPAT
@HAIKU_TRUE@am__append_13 = -D_BSD_SOURCE
@LINUX_TRUE@am__append_14 = -D_GNU_SOURCE
@SUNOS_TRUE@am__append_15 = -D__EXTENSIONS__ \
@SUNOS_TRUE@ -D_XOPEN_SOURCE=500 \
@SUNOS_TRUE@ -D_REENTRANT
@OS390_TRUE@am__append_16 = -D_ISOC99_SOURCE \
@OS390_TRUE@ -D_UNIX03_THREADS \
@OS390_TRUE@ -D_UNIX03_SOURCE \
@OS390_TRUE@ -D_OPEN_SYS_IF_EXT=1 \
@OS390_TRUE@ -D_OPEN_SYS_SOCK_IPV6 \
@OS390_TRUE@ -D_OPEN_MSGQ_EXT \
@OS390_TRUE@ -D_XOPEN_SOURCE_EXTENDED \
@OS390_TRUE@ -D_ALL_SOURCE \
@OS390_TRUE@ -D_LARGE_TIME_API \
@OS390_TRUE@ -D_OPEN_SYS_FILE_EXT \
@OS390_TRUE@ -DPATH_MAX=255 \
@OS390_TRUE@ -qCHARS=signed \
@OS390_TRUE@ -qXPLINK \
@OS390_TRUE@ -qFLOAT=IEEE
@AIX_TRUE@am__append_17 = -D_ALL_SOURCE \
@AIX_TRUE@ -D_XOPEN_SOURCE=500 \
@AIX_TRUE@ -D_LINUX_SOURCE_COMPAT \
@AIX_TRUE@ -D_THREAD_SAFE \
@AIX_TRUE@ -DHAVE_SYS_AHAFS_EVPRODS_H
@AIX_TRUE@am__append_18 = include/uv/aix.h
@AIX_TRUE@am__append_19 = src/unix/aix.c src/unix/aix-common.c
@OS400_TRUE@am__append_20 = -D_ALL_SOURCE \
@OS400_TRUE@ -D_XOPEN_SOURCE=500 \
@OS400_TRUE@ -D_LINUX_SOURCE_COMPAT \
@OS400_TRUE@ -D_THREAD_SAFE
@OS400_TRUE@am__append_21 = include/uv/posix.h
@OS400_TRUE@am__append_22 = src/unix/aix-common.c \
@OS400_TRUE@ src/unix/ibmi.c \
@OS400_TRUE@ src/unix/posix-poll.c \
@OS400_TRUE@ src/unix/no-fsevents.c
@ANDROID_TRUE@am__append_23 = -D_GNU_SOURCE
@CYGWIN_TRUE@am__append_24 = include/uv/posix.h
@CYGWIN_TRUE@am__append_25 = -D_GNU_SOURCE
@CYGWIN_TRUE@am__append_26 = src/unix/cygwin.c \
@CYGWIN_TRUE@ src/unix/bsd-ifaddrs.c \
@CYGWIN_TRUE@ src/unix/no-fsevents.c \
@CYGWIN_TRUE@ src/unix/no-proctitle.c \
@CYGWIN_TRUE@ src/unix/posix-hrtime.c \
@CYGWIN_TRUE@ src/unix/posix-poll.c \
@CYGWIN_TRUE@ src/unix/procfs-exepath.c \
@CYGWIN_TRUE@ src/unix/sysinfo-loadavg.c \
@CYGWIN_TRUE@ src/unix/sysinfo-memory.c
@DARWIN_TRUE@am__append_27 = include/uv/darwin.h
@DARWIN_TRUE@am__append_28 = -D_DARWIN_USE_64_BIT_INODE=1 \
@DARWIN_TRUE@ -D_DARWIN_UNLIMITED_SELECT=1
@DARWIN_TRUE@am__append_29 = src/unix/bsd-ifaddrs.c \
@DARWIN_TRUE@ src/unix/darwin-proctitle.c \
@DARWIN_TRUE@ src/unix/darwin-stub.h \
@DARWIN_TRUE@ src/unix/darwin.c \
@DARWIN_TRUE@ src/unix/fsevents.c \
@DARWIN_TRUE@ src/unix/kqueue.c \
@DARWIN_TRUE@ src/unix/proctitle.c \
@DARWIN_TRUE@ src/unix/random-getentropy.c
@DARWIN_TRUE@am__append_30 = -lutil
@DRAGONFLY_TRUE@am__append_31 = include/uv/bsd.h
@DRAGONFLY_TRUE@am__append_32 = src/unix/bsd-ifaddrs.c \
@DRAGONFLY_TRUE@ src/unix/bsd-proctitle.c \
@DRAGONFLY_TRUE@ src/unix/freebsd.c \
@DRAGONFLY_TRUE@ src/unix/kqueue.c \
@DRAGONFLY_TRUE@ src/unix/posix-hrtime.c
@DRAGONFLY_TRUE@am__append_33 = -lutil
@FREEBSD_TRUE@am__append_34 = include/uv/bsd.h
@FREEBSD_TRUE@am__append_35 = src/unix/bsd-ifaddrs.c \
@FREEBSD_TRUE@ src/unix/bsd-proctitle.c \
@FREEBSD_TRUE@ src/unix/freebsd.c \
@FREEBSD_TRUE@ src/unix/kqueue.c \
@FREEBSD_TRUE@ src/unix/posix-hrtime.c \
@FREEBSD_TRUE@ src/unix/random-getrandom.c
@FREEBSD_TRUE@am__append_36 = -lutil
@HAIKU_TRUE@am__append_37 = include/uv/posix.h
@HAIKU_TRUE@am__append_38 = -D_BSD_SOURCE
@HAIKU_TRUE@am__append_39 = src/unix/bsd-ifaddrs.c \
@HAIKU_TRUE@ src/unix/haiku.c \
@HAIKU_TRUE@ src/unix/no-fsevents.c \
@HAIKU_TRUE@ src/unix/no-proctitle.c \
@HAIKU_TRUE@ src/unix/posix-hrtime.c \
@HAIKU_TRUE@ src/unix/posix-poll.c
@HURD_TRUE@am__append_40 = include/uv/posix.h
@HURD_TRUE@am__append_41 = src/unix/bsd-ifaddrs.c \
@HURD_TRUE@ src/unix/no-fsevents.c \
@HURD_TRUE@ src/unix/no-proctitle.c \
@HURD_TRUE@ src/unix/posix-hrtime.c \
@HURD_TRUE@ src/unix/posix-poll.c \
@HURD_TRUE@ src/unix/hurd.c
@LINUX_TRUE@am__append_42 = include/uv/linux.h
@LINUX_TRUE@am__append_43 = -D_GNU_SOURCE
@LINUX_TRUE@am__append_44 = src/unix/linux.c \
@LINUX_TRUE@ src/unix/procfs-exepath.c \
@LINUX_TRUE@ src/unix/proctitle.c \
@LINUX_TRUE@ src/unix/random-getrandom.c \
@LINUX_TRUE@ src/unix/random-sysctl-linux.c
@LINUX_TRUE@am__append_45 = -lutil
@MSYS_TRUE@am__append_46 = -D_GNU_SOURCE
@MSYS_TRUE@am__append_47 = src/unix/cygwin.c \
@MSYS_TRUE@ src/unix/bsd-ifaddrs.c \
@MSYS_TRUE@ src/unix/no-fsevents.c \
@MSYS_TRUE@ src/unix/no-proctitle.c \
@MSYS_TRUE@ src/unix/posix-hrtime.c \
@MSYS_TRUE@ src/unix/posix-poll.c \
@MSYS_TRUE@ src/unix/procfs-exepath.c \
@MSYS_TRUE@ src/unix/sysinfo-loadavg.c \
@MSYS_TRUE@ src/unix/sysinfo-memory.c
@NETBSD_TRUE@am__append_48 = include/uv/bsd.h
@NETBSD_TRUE@am__append_49 = src/unix/bsd-ifaddrs.c \
@NETBSD_TRUE@ src/unix/bsd-proctitle.c \
@NETBSD_TRUE@ src/unix/kqueue.c \
@NETBSD_TRUE@ src/unix/netbsd.c \
@NETBSD_TRUE@ src/unix/posix-hrtime.c
@NETBSD_TRUE@am__append_50 = -lutil
@OPENBSD_TRUE@am__append_51 = include/uv/bsd.h
@OPENBSD_TRUE@am__append_52 = src/unix/bsd-ifaddrs.c \
@OPENBSD_TRUE@ src/unix/bsd-proctitle.c \
@OPENBSD_TRUE@ src/unix/kqueue.c \
@OPENBSD_TRUE@ src/unix/openbsd.c \
@OPENBSD_TRUE@ src/unix/posix-hrtime.c \
@OPENBSD_TRUE@ src/unix/random-getentropy.c
@OPENBSD_TRUE@am__append_53 = -lutil
@SUNOS_TRUE@am__append_54 = include/uv/sunos.h
@SUNOS_TRUE@am__append_55 = -D__EXTENSIONS__ \
@SUNOS_TRUE@ -D_XOPEN_SOURCE=500 \
@SUNOS_TRUE@ -D_REENTRANT
@SUNOS_TRUE@am__append_56 = src/unix/no-proctitle.c \
@SUNOS_TRUE@ src/unix/sunos.c
@OS390_TRUE@am__append_57 = -D_UNIX03_THREADS \
@OS390_TRUE@ -D_UNIX03_SOURCE \
@OS390_TRUE@ -D_OPEN_SYS_IF_EXT=1 \
@OS390_TRUE@ -D_OPEN_MSGQ_EXT \
@OS390_TRUE@ -D_XOPEN_SOURCE_EXTENDED \
@OS390_TRUE@ -D_ALL_SOURCE \
@OS390_TRUE@ -D_LARGE_TIME_API \
@OS390_TRUE@ -D_OPEN_SYS_SOCK_EXT3 \
@OS390_TRUE@ -D_OPEN_SYS_SOCK_IPV6 \
@OS390_TRUE@ -D_OPEN_SYS_FILE_EXT \
@OS390_TRUE@ -DUV_PLATFORM_SEM_T=int \
@OS390_TRUE@ -DPATH_MAX=255 \
@OS390_TRUE@ -qCHARS=signed \
@OS390_TRUE@ -qXPLINK \
@OS390_TRUE@ -qFLOAT=IEEE
@OS390_TRUE@am__append_58 = -qXPLINK
@OS390_TRUE@am__append_59 = src/unix/os390.c \
@OS390_TRUE@ src/unix/os390-syscalls.c \
@OS390_TRUE@ src/unix/proctitle.c
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pthread.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 \
$(top_srcdir)/m4/libuv-extra-automake-flags.m4 \
$(top_srcdir)/m4/as_case.m4 \
$(top_srcdir)/m4/libuv-check-flags.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(include_HEADERS) \
$(am__uvinclude_HEADERS_DIST) $(am__DIST_COMMON)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_CLEAN_FILES = libuv.pc
CONFIG_CLEAN_VPATH_FILES = test/fixtures/empty_file \
test/fixtures/load_error.node test/fixtures/lorem_ipsum.txt \
test/fixtures/one_file/one_file
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
"$(DESTDIR)$(includedir)" "$(DESTDIR)$(uvincludedir)"
LTLIBRARIES = $(lib_LTLIBRARIES)
libuv_la_LIBADD =
am__libuv_la_SOURCES_DIST = src/fs-poll.c src/heap-inl.h src/idna.c \
src/idna.h src/inet.c src/queue.h src/random.c src/strscpy.c \
src/strscpy.h src/thread-common.c src/threadpool.c src/timer.c \
src/uv-data-getter-setters.c src/uv-common.c src/uv-common.h \
src/version.c src/strtok.c src/strtok.h src/win/async.c \
src/win/atomicops-inl.h src/win/core.c src/win/detect-wakeup.c \
src/win/dl.c src/win/error.c src/win/fs-event.c src/win/fs.c \
src/win/getaddrinfo.c src/win/getnameinfo.c src/win/handle.c \
src/win/handle-inl.h src/win/internal.h src/win/loop-watcher.c \
src/win/pipe.c src/win/poll.c src/win/process-stdio.c \
src/win/process.c src/win/req-inl.h src/win/signal.c \
src/win/stream.c src/win/stream-inl.h src/win/tcp.c \
src/win/thread.c src/win/tty.c src/win/udp.c src/win/util.c \
src/win/winapi.c src/win/winapi.h src/win/winsock.c \
src/win/winsock.h src/unix/async.c src/unix/core.c \
src/unix/dl.c src/unix/fs.c src/unix/getaddrinfo.c \
src/unix/getnameinfo.c src/unix/internal.h \
src/unix/loop-watcher.c src/unix/loop.c src/unix/pipe.c \
src/unix/poll.c src/unix/process.c \
src/unix/random-devurandom.c src/unix/signal.c \
src/unix/stream.c src/unix/tcp.c src/unix/thread.c \
src/unix/tty.c src/unix/udp.c src/unix/aix.c \
src/unix/aix-common.c src/unix/ibmi.c src/unix/posix-poll.c \
src/unix/no-fsevents.c src/unix/cygwin.c \
src/unix/bsd-ifaddrs.c src/unix/no-proctitle.c \
src/unix/posix-hrtime.c src/unix/procfs-exepath.c \
src/unix/sysinfo-loadavg.c src/unix/sysinfo-memory.c \
src/unix/darwin-proctitle.c src/unix/darwin-stub.h \
src/unix/darwin.c src/unix/fsevents.c src/unix/kqueue.c \
src/unix/proctitle.c src/unix/random-getentropy.c \
src/unix/bsd-proctitle.c src/unix/freebsd.c \
src/unix/random-getrandom.c src/unix/haiku.c src/unix/hurd.c \
src/unix/linux.c src/unix/random-sysctl-linux.c \
src/unix/netbsd.c src/unix/openbsd.c src/unix/sunos.c \
src/unix/os390.c src/unix/os390-syscalls.c
am__dirstamp = $(am__leading_dot)dirstamp
@WINNT_TRUE@am__objects_1 = src/win/libuv_la-async.lo \
@WINNT_TRUE@ src/win/libuv_la-core.lo \
@WINNT_TRUE@ src/win/libuv_la-detect-wakeup.lo \
@WINNT_TRUE@ src/win/libuv_la-dl.lo src/win/libuv_la-error.lo \
@WINNT_TRUE@ src/win/libuv_la-fs-event.lo \
@WINNT_TRUE@ src/win/libuv_la-fs.lo \
@WINNT_TRUE@ src/win/libuv_la-getaddrinfo.lo \
@WINNT_TRUE@ src/win/libuv_la-getnameinfo.lo \
@WINNT_TRUE@ src/win/libuv_la-handle.lo \
@WINNT_TRUE@ src/win/libuv_la-loop-watcher.lo \
@WINNT_TRUE@ src/win/libuv_la-pipe.lo src/win/libuv_la-poll.lo \
@WINNT_TRUE@ src/win/libuv_la-process-stdio.lo \
@WINNT_TRUE@ src/win/libuv_la-process.lo \
@WINNT_TRUE@ src/win/libuv_la-signal.lo \
@WINNT_TRUE@ src/win/libuv_la-stream.lo src/win/libuv_la-tcp.lo \
@WINNT_TRUE@ src/win/libuv_la-thread.lo src/win/libuv_la-tty.lo \
@WINNT_TRUE@ src/win/libuv_la-udp.lo src/win/libuv_la-util.lo \
@WINNT_TRUE@ src/win/libuv_la-winapi.lo \
@WINNT_TRUE@ src/win/libuv_la-winsock.lo
@WINNT_FALSE@am__objects_2 = src/unix/libuv_la-async.lo \
@WINNT_FALSE@ src/unix/libuv_la-core.lo src/unix/libuv_la-dl.lo \
@WINNT_FALSE@ src/unix/libuv_la-fs.lo \
@WINNT_FALSE@ src/unix/libuv_la-getaddrinfo.lo \
@WINNT_FALSE@ src/unix/libuv_la-getnameinfo.lo \
@WINNT_FALSE@ src/unix/libuv_la-loop-watcher.lo \
@WINNT_FALSE@ src/unix/libuv_la-loop.lo \
@WINNT_FALSE@ src/unix/libuv_la-pipe.lo \
@WINNT_FALSE@ src/unix/libuv_la-poll.lo \
@WINNT_FALSE@ src/unix/libuv_la-process.lo \
@WINNT_FALSE@ src/unix/libuv_la-random-devurandom.lo \
@WINNT_FALSE@ src/unix/libuv_la-signal.lo \
@WINNT_FALSE@ src/unix/libuv_la-stream.lo \
@WINNT_FALSE@ src/unix/libuv_la-tcp.lo \
@WINNT_FALSE@ src/unix/libuv_la-thread.lo \
@WINNT_FALSE@ src/unix/libuv_la-tty.lo src/unix/libuv_la-udp.lo
@AIX_TRUE@am__objects_3 = src/unix/libuv_la-aix.lo \
@AIX_TRUE@ src/unix/libuv_la-aix-common.lo
@OS400_TRUE@am__objects_4 = src/unix/libuv_la-aix-common.lo \
@OS400_TRUE@ src/unix/libuv_la-ibmi.lo \
@OS400_TRUE@ src/unix/libuv_la-posix-poll.lo \
@OS400_TRUE@ src/unix/libuv_la-no-fsevents.lo
@CYGWIN_TRUE@am__objects_5 = src/unix/libuv_la-cygwin.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-bsd-ifaddrs.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-no-fsevents.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-no-proctitle.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-posix-poll.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-procfs-exepath.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-sysinfo-loadavg.lo \
@CYGWIN_TRUE@ src/unix/libuv_la-sysinfo-memory.lo
@DARWIN_TRUE@am__objects_6 = src/unix/libuv_la-bsd-ifaddrs.lo \
@DARWIN_TRUE@ src/unix/libuv_la-darwin-proctitle.lo \
@DARWIN_TRUE@ src/unix/libuv_la-darwin.lo \
@DARWIN_TRUE@ src/unix/libuv_la-fsevents.lo \
@DARWIN_TRUE@ src/unix/libuv_la-kqueue.lo \
@DARWIN_TRUE@ src/unix/libuv_la-proctitle.lo \
@DARWIN_TRUE@ src/unix/libuv_la-random-getentropy.lo
@DRAGONFLY_TRUE@am__objects_7 = src/unix/libuv_la-bsd-ifaddrs.lo \
@DRAGONFLY_TRUE@ src/unix/libuv_la-bsd-proctitle.lo \
@DRAGONFLY_TRUE@ src/unix/libuv_la-freebsd.lo \
@DRAGONFLY_TRUE@ src/unix/libuv_la-kqueue.lo \
@DRAGONFLY_TRUE@ src/unix/libuv_la-posix-hrtime.lo
@FREEBSD_TRUE@am__objects_8 = src/unix/libuv_la-bsd-ifaddrs.lo \
@FREEBSD_TRUE@ src/unix/libuv_la-bsd-proctitle.lo \
@FREEBSD_TRUE@ src/unix/libuv_la-freebsd.lo \
@FREEBSD_TRUE@ src/unix/libuv_la-kqueue.lo \
@FREEBSD_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@FREEBSD_TRUE@ src/unix/libuv_la-random-getrandom.lo
@HAIKU_TRUE@am__objects_9 = src/unix/libuv_la-bsd-ifaddrs.lo \
@HAIKU_TRUE@ src/unix/libuv_la-haiku.lo \
@HAIKU_TRUE@ src/unix/libuv_la-no-fsevents.lo \
@HAIKU_TRUE@ src/unix/libuv_la-no-proctitle.lo \
@HAIKU_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@HAIKU_TRUE@ src/unix/libuv_la-posix-poll.lo
@HURD_TRUE@am__objects_10 = src/unix/libuv_la-bsd-ifaddrs.lo \
@HURD_TRUE@ src/unix/libuv_la-no-fsevents.lo \
@HURD_TRUE@ src/unix/libuv_la-no-proctitle.lo \
@HURD_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@HURD_TRUE@ src/unix/libuv_la-posix-poll.lo \
@HURD_TRUE@ src/unix/libuv_la-hurd.lo
@LINUX_TRUE@am__objects_11 = src/unix/libuv_la-linux.lo \
@LINUX_TRUE@ src/unix/libuv_la-procfs-exepath.lo \
@LINUX_TRUE@ src/unix/libuv_la-proctitle.lo \
@LINUX_TRUE@ src/unix/libuv_la-random-getrandom.lo \
@LINUX_TRUE@ src/unix/libuv_la-random-sysctl-linux.lo
@MSYS_TRUE@am__objects_12 = src/unix/libuv_la-cygwin.lo \
@MSYS_TRUE@ src/unix/libuv_la-bsd-ifaddrs.lo \
@MSYS_TRUE@ src/unix/libuv_la-no-fsevents.lo \
@MSYS_TRUE@ src/unix/libuv_la-no-proctitle.lo \
@MSYS_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@MSYS_TRUE@ src/unix/libuv_la-posix-poll.lo \
@MSYS_TRUE@ src/unix/libuv_la-procfs-exepath.lo \
@MSYS_TRUE@ src/unix/libuv_la-sysinfo-loadavg.lo \
@MSYS_TRUE@ src/unix/libuv_la-sysinfo-memory.lo
@NETBSD_TRUE@am__objects_13 = src/unix/libuv_la-bsd-ifaddrs.lo \
@NETBSD_TRUE@ src/unix/libuv_la-bsd-proctitle.lo \
@NETBSD_TRUE@ src/unix/libuv_la-kqueue.lo \
@NETBSD_TRUE@ src/unix/libuv_la-netbsd.lo \
@NETBSD_TRUE@ src/unix/libuv_la-posix-hrtime.lo
@OPENBSD_TRUE@am__objects_14 = src/unix/libuv_la-bsd-ifaddrs.lo \
@OPENBSD_TRUE@ src/unix/libuv_la-bsd-proctitle.lo \
@OPENBSD_TRUE@ src/unix/libuv_la-kqueue.lo \
@OPENBSD_TRUE@ src/unix/libuv_la-openbsd.lo \
@OPENBSD_TRUE@ src/unix/libuv_la-posix-hrtime.lo \
@OPENBSD_TRUE@ src/unix/libuv_la-random-getentropy.lo
@SUNOS_TRUE@am__objects_15 = src/unix/libuv_la-no-proctitle.lo \
@SUNOS_TRUE@ src/unix/libuv_la-sunos.lo
@OS390_TRUE@am__objects_16 = src/unix/libuv_la-os390.lo \
@OS390_TRUE@ src/unix/libuv_la-os390-syscalls.lo \
@OS390_TRUE@ src/unix/libuv_la-proctitle.lo
am_libuv_la_OBJECTS = src/libuv_la-fs-poll.lo src/libuv_la-idna.lo \
src/libuv_la-inet.lo src/libuv_la-random.lo \
src/libuv_la-strscpy.lo src/libuv_la-thread-common.lo \
src/libuv_la-threadpool.lo src/libuv_la-timer.lo \
src/libuv_la-uv-data-getter-setters.lo \
src/libuv_la-uv-common.lo src/libuv_la-version.lo \
src/libuv_la-strtok.lo $(am__objects_1) $(am__objects_2) \
$(am__objects_3) $(am__objects_4) $(am__objects_5) \
$(am__objects_6) $(am__objects_7) $(am__objects_8) \
$(am__objects_9) $(am__objects_10) $(am__objects_11) \
$(am__objects_12) $(am__objects_13) $(am__objects_14) \
$(am__objects_15) $(am__objects_16)
libuv_la_OBJECTS = $(am_libuv_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
libuv_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libuv_la_CFLAGS) \
$(CFLAGS) $(libuv_la_LDFLAGS) $(LDFLAGS) -o $@
am__test_run_tests_SOURCES_DIST = test/blackhole-server.c \
test/echo-server.c test/run-tests.c test/runner.c \
test/runner.h test/task.h test/test-active.c test/test-async.c \
test/test-async-null-cb.c test/test-barrier.c \
test/test-callback-stack.c test/test-close-fd.c \
test/test-close-order.c test/test-condvar.c \
test/test-connect-unspecified.c test/test-connection-fail.c \
test/test-cwd-and-chdir.c test/test-default-loop-close.c \
test/test-delayed-accept.c test/test-dlerror.c \
test/test-eintr-handling.c test/test-embed.c \
test/test-emfile.c test/test-env-vars.c test/test-error.c \
test/test-fail-always.c test/test-fs-copyfile.c \
test/test-fs-event.c test/test-fs-poll.c test/test-fs.c \
test/test-fs-readdir.c test/test-fs-fd-hash.c \
test/test-fs-open-flags.c test/test-fork.c \
test/test-getters-setters.c test/test-get-currentexe.c \
test/test-get-loadavg.c test/test-get-memory.c \
test/test-get-passwd.c test/test-getaddrinfo.c \
test/test-gethostname.c test/test-getnameinfo.c \
test/test-getsockname.c test/test-gettimeofday.c \
test/test-handle-fileno.c test/test-homedir.c \
test/test-hrtime.c test/test-idle.c test/test-idna.c \
test/test-ip4-addr.c test/test-ip6-addr.c test/test-ip-name.c \
test/test-ipc-heavy-traffic-deadlock-bug.c \
test/test-ipc-send-recv.c test/test-ipc.c test/test-list.h \
test/test-loop-handles.c test/test-loop-alive.c \
test/test-loop-close.c test/test-loop-stop.c \
test/test-loop-time.c test/test-loop-configure.c \
test/test-metrics.c test/test-multiple-listen.c \
test/test-mutexes.c \
test/test-not-readable-nor-writable-on-read-error.c \
test/test-not-writable-after-shutdown.c test/test-osx-select.c \
test/test-pass-always.c test/test-ping-pong.c \
test/test-pipe-bind-error.c test/test-pipe-connect-error.c \
test/test-pipe-connect-multiple.c \
test/test-pipe-connect-prepare.c test/test-pipe-getsockname.c \
test/test-pipe-pending-instances.c test/test-pipe-sendmsg.c \
test/test-pipe-server-close.c \
test/test-pipe-close-stdout-read-stdin.c \
test/test-pipe-set-non-blocking.c test/test-pipe-set-fchmod.c \
test/test-platform-output.c test/test-poll.c \
test/test-poll-close.c \
test/test-poll-close-doesnt-corrupt-stack.c \
test/test-poll-closesocket.c test/test-poll-multiple-handles.c \
test/test-poll-oob.c test/test-process-priority.c \
test/test-process-title.c test/test-process-title-threadsafe.c \
test/test-queue-foreach-delete.c test/test-random.c \
test/test-readable-on-eof.c test/test-ref.c \
test/test-run-nowait.c test/test-run-once.c \
test/test-semaphore.c test/test-shutdown-close.c \
test/test-shutdown-eof.c test/test-shutdown-simultaneous.c \
test/test-shutdown-twice.c test/test-signal-multiple-loops.c \
test/test-signal-pending-on-close.c test/test-signal.c \
test/test-socket-buffer-size.c test/test-spawn.c \
test/test-stdio-over-pipes.c test/test-strscpy.c \
test/test-strtok.c test/test-tcp-alloc-cb-fail.c \
test/test-tcp-bind-error.c test/test-tcp-bind6-error.c \
test/test-tcp-close-accept.c \
test/test-tcp-close-while-connecting.c \
test/test-tcp-close-after-read-timeout.c test/test-tcp-close.c \
test/test-tcp-close-reset.c \
test/test-tcp-create-socket-early.c \
test/test-tcp-connect-error-after-write.c \
test/test-tcp-connect-error.c test/test-tcp-connect-timeout.c \
test/test-tcp-connect6-error.c test/test-tcp-flags.c \
test/test-tcp-open.c test/test-tcp-read-stop.c \
test/test-tcp-read-stop-start.c test/test-tcp-rst.c \
test/test-tcp-shutdown-after-write.c \
test/test-tcp-unexpected-read.c test/test-tcp-oob.c \
test/test-tcp-write-to-half-open-connection.c \
test/test-tcp-write-after-connect.c test/test-tcp-writealot.c \
test/test-tcp-write-fail.c test/test-tcp-try-write.c \
test/test-tcp-write-in-a-row.c test/test-tcp-try-write-error.c \
test/test-tcp-write-queue-order.c test/test-test-macros.c \
test/test-thread-equal.c test/test-thread.c \
test/test-thread-affinity.c test/test-thread-priority.c \
test/test-threadpool-cancel.c test/test-threadpool.c \
test/test-timer-again.c test/test-timer-from-check.c \
test/test-timer.c test/test-tmpdir.c \
test/test-tty-duplicate-key.c \
test/test-tty-escape-sequence-processing.c test/test-tty.c \
test/test-udp-alloc-cb-fail.c test/test-udp-bind.c \
test/test-udp-connect.c test/test-udp-connect6.c \
test/test-udp-create-socket-early.c \
test/test-udp-dgram-too-big.c test/test-udp-ipv6.c \
test/test-udp-mmsg.c test/test-udp-multicast-interface.c \
test/test-udp-multicast-interface6.c \
test/test-udp-multicast-join.c test/test-udp-multicast-join6.c \
test/test-udp-multicast-ttl.c test/test-udp-open.c \
test/test-udp-options.c test/test-udp-send-and-recv.c \
test/test-udp-send-hang-loop.c test/test-udp-send-immediate.c \
test/test-udp-sendmmsg-error.c \
test/test-udp-send-unreachable.c test/test-udp-try-send.c \
test/test-udp-recv-in-a-row.c test/test-uname.c \
test/test-walk-handles.c test/test-watcher-cross-stop.c \
test/runner-win.c test/runner-win.h test/runner-unix.c \
test/runner-unix.h
@WINNT_TRUE@am__objects_17 = test/run_tests-runner-win.$(OBJEXT)
@WINNT_FALSE@am__objects_18 = test/run_tests-runner-unix.$(OBJEXT)
am_test_run_tests_OBJECTS = test/run_tests-blackhole-server.$(OBJEXT) \
test/run_tests-echo-server.$(OBJEXT) \
test/run_tests-run-tests.$(OBJEXT) \
test/run_tests-runner.$(OBJEXT) \
test/run_tests-test-active.$(OBJEXT) \
test/run_tests-test-async.$(OBJEXT) \
test/run_tests-test-async-null-cb.$(OBJEXT) \
test/run_tests-test-barrier.$(OBJEXT) \
test/run_tests-test-callback-stack.$(OBJEXT) \
test/run_tests-test-close-fd.$(OBJEXT) \
test/run_tests-test-close-order.$(OBJEXT) \
test/run_tests-test-condvar.$(OBJEXT) \
test/run_tests-test-connect-unspecified.$(OBJEXT) \
test/run_tests-test-connection-fail.$(OBJEXT) \
test/run_tests-test-cwd-and-chdir.$(OBJEXT) \
test/run_tests-test-default-loop-close.$(OBJEXT) \
test/run_tests-test-delayed-accept.$(OBJEXT) \
test/run_tests-test-dlerror.$(OBJEXT) \
test/run_tests-test-eintr-handling.$(OBJEXT) \
test/run_tests-test-embed.$(OBJEXT) \
test/run_tests-test-emfile.$(OBJEXT) \
test/run_tests-test-env-vars.$(OBJEXT) \
test/run_tests-test-error.$(OBJEXT) \
test/run_tests-test-fail-always.$(OBJEXT) \
test/run_tests-test-fs-copyfile.$(OBJEXT) \
test/run_tests-test-fs-event.$(OBJEXT) \
test/run_tests-test-fs-poll.$(OBJEXT) \
test/run_tests-test-fs.$(OBJEXT) \
test/run_tests-test-fs-readdir.$(OBJEXT) \
test/run_tests-test-fs-fd-hash.$(OBJEXT) \
test/run_tests-test-fs-open-flags.$(OBJEXT) \
test/run_tests-test-fork.$(OBJEXT) \
test/run_tests-test-getters-setters.$(OBJEXT) \
test/run_tests-test-get-currentexe.$(OBJEXT) \
test/run_tests-test-get-loadavg.$(OBJEXT) \
test/run_tests-test-get-memory.$(OBJEXT) \
test/run_tests-test-get-passwd.$(OBJEXT) \
test/run_tests-test-getaddrinfo.$(OBJEXT) \
test/run_tests-test-gethostname.$(OBJEXT) \
test/run_tests-test-getnameinfo.$(OBJEXT) \
test/run_tests-test-getsockname.$(OBJEXT) \
test/run_tests-test-gettimeofday.$(OBJEXT) \
test/run_tests-test-handle-fileno.$(OBJEXT) \
test/run_tests-test-homedir.$(OBJEXT) \
test/run_tests-test-hrtime.$(OBJEXT) \
test/run_tests-test-idle.$(OBJEXT) \
test/run_tests-test-idna.$(OBJEXT) \
test/run_tests-test-ip4-addr.$(OBJEXT) \
test/run_tests-test-ip6-addr.$(OBJEXT) \
test/run_tests-test-ip-name.$(OBJEXT) \
test/run_tests-test-ipc-heavy-traffic-deadlock-bug.$(OBJEXT) \
test/run_tests-test-ipc-send-recv.$(OBJEXT) \
test/run_tests-test-ipc.$(OBJEXT) \
test/run_tests-test-loop-handles.$(OBJEXT) \
test/run_tests-test-loop-alive.$(OBJEXT) \
test/run_tests-test-loop-close.$(OBJEXT) \
test/run_tests-test-loop-stop.$(OBJEXT) \
test/run_tests-test-loop-time.$(OBJEXT) \
test/run_tests-test-loop-configure.$(OBJEXT) \
test/run_tests-test-metrics.$(OBJEXT) \
test/run_tests-test-multiple-listen.$(OBJEXT) \
test/run_tests-test-mutexes.$(OBJEXT) \
test/run_tests-test-not-readable-nor-writable-on-read-error.$(OBJEXT) \
test/run_tests-test-not-writable-after-shutdown.$(OBJEXT) \
test/run_tests-test-osx-select.$(OBJEXT) \
test/run_tests-test-pass-always.$(OBJEXT) \
test/run_tests-test-ping-pong.$(OBJEXT) \
test/run_tests-test-pipe-bind-error.$(OBJEXT) \
test/run_tests-test-pipe-connect-error.$(OBJEXT) \
test/run_tests-test-pipe-connect-multiple.$(OBJEXT) \
test/run_tests-test-pipe-connect-prepare.$(OBJEXT) \
test/run_tests-test-pipe-getsockname.$(OBJEXT) \
test/run_tests-test-pipe-pending-instances.$(OBJEXT) \
test/run_tests-test-pipe-sendmsg.$(OBJEXT) \
test/run_tests-test-pipe-server-close.$(OBJEXT) \
test/run_tests-test-pipe-close-stdout-read-stdin.$(OBJEXT) \
test/run_tests-test-pipe-set-non-blocking.$(OBJEXT) \
test/run_tests-test-pipe-set-fchmod.$(OBJEXT) \
test/run_tests-test-platform-output.$(OBJEXT) \
test/run_tests-test-poll.$(OBJEXT) \
test/run_tests-test-poll-close.$(OBJEXT) \
test/run_tests-test-poll-close-doesnt-corrupt-stack.$(OBJEXT) \
test/run_tests-test-poll-closesocket.$(OBJEXT) \
test/run_tests-test-poll-multiple-handles.$(OBJEXT) \
test/run_tests-test-poll-oob.$(OBJEXT) \
test/run_tests-test-process-priority.$(OBJEXT) \
test/run_tests-test-process-title.$(OBJEXT) \
test/run_tests-test-process-title-threadsafe.$(OBJEXT) \
test/run_tests-test-queue-foreach-delete.$(OBJEXT) \
test/run_tests-test-random.$(OBJEXT) \
test/run_tests-test-readable-on-eof.$(OBJEXT) \
test/run_tests-test-ref.$(OBJEXT) \
test/run_tests-test-run-nowait.$(OBJEXT) \
test/run_tests-test-run-once.$(OBJEXT) \
test/run_tests-test-semaphore.$(OBJEXT) \
test/run_tests-test-shutdown-close.$(OBJEXT) \
test/run_tests-test-shutdown-eof.$(OBJEXT) \
test/run_tests-test-shutdown-simultaneous.$(OBJEXT) \
test/run_tests-test-shutdown-twice.$(OBJEXT) \
test/run_tests-test-signal-multiple-loops.$(OBJEXT) \
test/run_tests-test-signal-pending-on-close.$(OBJEXT) \
test/run_tests-test-signal.$(OBJEXT) \
test/run_tests-test-socket-buffer-size.$(OBJEXT) \
test/run_tests-test-spawn.$(OBJEXT) \
test/run_tests-test-stdio-over-pipes.$(OBJEXT) \
test/run_tests-test-strscpy.$(OBJEXT) \
test/run_tests-test-strtok.$(OBJEXT) \
test/run_tests-test-tcp-alloc-cb-fail.$(OBJEXT) \
test/run_tests-test-tcp-bind-error.$(OBJEXT) \
test/run_tests-test-tcp-bind6-error.$(OBJEXT) \
test/run_tests-test-tcp-close-accept.$(OBJEXT) \
test/run_tests-test-tcp-close-while-connecting.$(OBJEXT) \
test/run_tests-test-tcp-close-after-read-timeout.$(OBJEXT) \
test/run_tests-test-tcp-close.$(OBJEXT) \
test/run_tests-test-tcp-close-reset.$(OBJEXT) \
test/run_tests-test-tcp-create-socket-early.$(OBJEXT) \
test/run_tests-test-tcp-connect-error-after-write.$(OBJEXT) \
test/run_tests-test-tcp-connect-error.$(OBJEXT) \
test/run_tests-test-tcp-connect-timeout.$(OBJEXT) \
test/run_tests-test-tcp-connect6-error.$(OBJEXT) \
test/run_tests-test-tcp-flags.$(OBJEXT) \
test/run_tests-test-tcp-open.$(OBJEXT) \
test/run_tests-test-tcp-read-stop.$(OBJEXT) \
test/run_tests-test-tcp-read-stop-start.$(OBJEXT) \
test/run_tests-test-tcp-rst.$(OBJEXT) \
test/run_tests-test-tcp-shutdown-after-write.$(OBJEXT) \
test/run_tests-test-tcp-unexpected-read.$(OBJEXT) \
test/run_tests-test-tcp-oob.$(OBJEXT) \
test/run_tests-test-tcp-write-to-half-open-connection.$(OBJEXT) \
test/run_tests-test-tcp-write-after-connect.$(OBJEXT) \
test/run_tests-test-tcp-writealot.$(OBJEXT) \
test/run_tests-test-tcp-write-fail.$(OBJEXT) \
test/run_tests-test-tcp-try-write.$(OBJEXT) \
test/run_tests-test-tcp-write-in-a-row.$(OBJEXT) \
test/run_tests-test-tcp-try-write-error.$(OBJEXT) \
test/run_tests-test-tcp-write-queue-order.$(OBJEXT) \
test/run_tests-test-test-macros.$(OBJEXT) \
test/run_tests-test-thread-equal.$(OBJEXT) \
test/run_tests-test-thread.$(OBJEXT) \
test/run_tests-test-thread-affinity.$(OBJEXT) \
test/run_tests-test-thread-priority.$(OBJEXT) \
test/run_tests-test-threadpool-cancel.$(OBJEXT) \
test/run_tests-test-threadpool.$(OBJEXT) \
test/run_tests-test-timer-again.$(OBJEXT) \
test/run_tests-test-timer-from-check.$(OBJEXT) \
test/run_tests-test-timer.$(OBJEXT) \
test/run_tests-test-tmpdir.$(OBJEXT) \
test/run_tests-test-tty-duplicate-key.$(OBJEXT) \
test/run_tests-test-tty-escape-sequence-processing.$(OBJEXT) \
test/run_tests-test-tty.$(OBJEXT) \
test/run_tests-test-udp-alloc-cb-fail.$(OBJEXT) \
test/run_tests-test-udp-bind.$(OBJEXT) \
test/run_tests-test-udp-connect.$(OBJEXT) \
test/run_tests-test-udp-connect6.$(OBJEXT) \
test/run_tests-test-udp-create-socket-early.$(OBJEXT) \
test/run_tests-test-udp-dgram-too-big.$(OBJEXT) \
test/run_tests-test-udp-ipv6.$(OBJEXT) \
test/run_tests-test-udp-mmsg.$(OBJEXT) \
test/run_tests-test-udp-multicast-interface.$(OBJEXT) \
test/run_tests-test-udp-multicast-interface6.$(OBJEXT) \
test/run_tests-test-udp-multicast-join.$(OBJEXT) \
test/run_tests-test-udp-multicast-join6.$(OBJEXT) \
test/run_tests-test-udp-multicast-ttl.$(OBJEXT) \
test/run_tests-test-udp-open.$(OBJEXT) \
test/run_tests-test-udp-options.$(OBJEXT) \
test/run_tests-test-udp-send-and-recv.$(OBJEXT) \
test/run_tests-test-udp-send-hang-loop.$(OBJEXT) \
test/run_tests-test-udp-send-immediate.$(OBJEXT) \
test/run_tests-test-udp-sendmmsg-error.$(OBJEXT) \
test/run_tests-test-udp-send-unreachable.$(OBJEXT) \
test/run_tests-test-udp-try-send.$(OBJEXT) \
test/run_tests-test-udp-recv-in-a-row.$(OBJEXT) \
test/run_tests-test-uname.$(OBJEXT) \
test/run_tests-test-walk-handles.$(OBJEXT) \
test/run_tests-test-watcher-cross-stop.$(OBJEXT) \
$(am__objects_17) $(am__objects_18)
test_run_tests_OBJECTS = $(am_test_run_tests_OBJECTS)
test_run_tests_DEPENDENCIES = libuv.la
test_run_tests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(test_run_tests_CFLAGS) $(CFLAGS) $(test_run_tests_LDFLAGS) \
$(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = src/$(DEPDIR)/libuv_la-fs-poll.Plo \
src/$(DEPDIR)/libuv_la-idna.Plo \
src/$(DEPDIR)/libuv_la-inet.Plo \
src/$(DEPDIR)/libuv_la-random.Plo \
src/$(DEPDIR)/libuv_la-strscpy.Plo \
src/$(DEPDIR)/libuv_la-strtok.Plo \
src/$(DEPDIR)/libuv_la-thread-common.Plo \
src/$(DEPDIR)/libuv_la-threadpool.Plo \
src/$(DEPDIR)/libuv_la-timer.Plo \
src/$(DEPDIR)/libuv_la-uv-common.Plo \
src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Plo \
src/$(DEPDIR)/libuv_la-version.Plo \
src/unix/$(DEPDIR)/libuv_la-aix-common.Plo \
src/unix/$(DEPDIR)/libuv_la-aix.Plo \
src/unix/$(DEPDIR)/libuv_la-async.Plo \
src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Plo \
src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Plo \
src/unix/$(DEPDIR)/libuv_la-core.Plo \
src/unix/$(DEPDIR)/libuv_la-cygwin.Plo \
src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Plo \
src/unix/$(DEPDIR)/libuv_la-darwin.Plo \
src/unix/$(DEPDIR)/libuv_la-dl.Plo \
src/unix/$(DEPDIR)/libuv_la-freebsd.Plo \
src/unix/$(DEPDIR)/libuv_la-fs.Plo \
src/unix/$(DEPDIR)/libuv_la-fsevents.Plo \
src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Plo \
src/unix/$(DEPDIR)/libuv_la-getnameinfo.Plo \
src/unix/$(DEPDIR)/libuv_la-haiku.Plo \
src/unix/$(DEPDIR)/libuv_la-hurd.Plo \
src/unix/$(DEPDIR)/libuv_la-ibmi.Plo \
src/unix/$(DEPDIR)/libuv_la-kqueue.Plo \
src/unix/$(DEPDIR)/libuv_la-linux.Plo \
src/unix/$(DEPDIR)/libuv_la-loop-watcher.Plo \
src/unix/$(DEPDIR)/libuv_la-loop.Plo \
src/unix/$(DEPDIR)/libuv_la-netbsd.Plo \
src/unix/$(DEPDIR)/libuv_la-no-fsevents.Plo \
src/unix/$(DEPDIR)/libuv_la-no-proctitle.Plo \
src/unix/$(DEPDIR)/libuv_la-openbsd.Plo \
src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Plo \
src/unix/$(DEPDIR)/libuv_la-os390.Plo \
src/unix/$(DEPDIR)/libuv_la-pipe.Plo \
src/unix/$(DEPDIR)/libuv_la-poll.Plo \
src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Plo \
src/unix/$(DEPDIR)/libuv_la-posix-poll.Plo \
src/unix/$(DEPDIR)/libuv_la-process.Plo \
src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Plo \
src/unix/$(DEPDIR)/libuv_la-proctitle.Plo \
src/unix/$(DEPDIR)/libuv_la-random-devurandom.Plo \
src/unix/$(DEPDIR)/libuv_la-random-getentropy.Plo \
src/unix/$(DEPDIR)/libuv_la-random-getrandom.Plo \
src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Plo \
src/unix/$(DEPDIR)/libuv_la-signal.Plo \
src/unix/$(DEPDIR)/libuv_la-stream.Plo \
src/unix/$(DEPDIR)/libuv_la-sunos.Plo \
src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Plo \
src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Plo \
src/unix/$(DEPDIR)/libuv_la-tcp.Plo \
src/unix/$(DEPDIR)/libuv_la-thread.Plo \
src/unix/$(DEPDIR)/libuv_la-tty.Plo \
src/unix/$(DEPDIR)/libuv_la-udp.Plo \
src/win/$(DEPDIR)/libuv_la-async.Plo \
src/win/$(DEPDIR)/libuv_la-core.Plo \
src/win/$(DEPDIR)/libuv_la-detect-wakeup.Plo \
src/win/$(DEPDIR)/libuv_la-dl.Plo \
src/win/$(DEPDIR)/libuv_la-error.Plo \
src/win/$(DEPDIR)/libuv_la-fs-event.Plo \
src/win/$(DEPDIR)/libuv_la-fs.Plo \
src/win/$(DEPDIR)/libuv_la-getaddrinfo.Plo \
src/win/$(DEPDIR)/libuv_la-getnameinfo.Plo \
src/win/$(DEPDIR)/libuv_la-handle.Plo \
src/win/$(DEPDIR)/libuv_la-loop-watcher.Plo \
src/win/$(DEPDIR)/libuv_la-pipe.Plo \
src/win/$(DEPDIR)/libuv_la-poll.Plo \
src/win/$(DEPDIR)/libuv_la-process-stdio.Plo \
src/win/$(DEPDIR)/libuv_la-process.Plo \
src/win/$(DEPDIR)/libuv_la-signal.Plo \
src/win/$(DEPDIR)/libuv_la-stream.Plo \
src/win/$(DEPDIR)/libuv_la-tcp.Plo \
src/win/$(DEPDIR)/libuv_la-thread.Plo \
src/win/$(DEPDIR)/libuv_la-tty.Plo \
src/win/$(DEPDIR)/libuv_la-udp.Plo \
src/win/$(DEPDIR)/libuv_la-util.Plo \
src/win/$(DEPDIR)/libuv_la-winapi.Plo \
src/win/$(DEPDIR)/libuv_la-winsock.Plo \
test/$(DEPDIR)/run_tests-blackhole-server.Po \
test/$(DEPDIR)/run_tests-echo-server.Po \
test/$(DEPDIR)/run_tests-run-tests.Po \
test/$(DEPDIR)/run_tests-runner-unix.Po \
test/$(DEPDIR)/run_tests-runner-win.Po \
test/$(DEPDIR)/run_tests-runner.Po \
test/$(DEPDIR)/run_tests-test-active.Po \
test/$(DEPDIR)/run_tests-test-async-null-cb.Po \
test/$(DEPDIR)/run_tests-test-async.Po \
test/$(DEPDIR)/run_tests-test-barrier.Po \
test/$(DEPDIR)/run_tests-test-callback-stack.Po \
test/$(DEPDIR)/run_tests-test-close-fd.Po \
test/$(DEPDIR)/run_tests-test-close-order.Po \
test/$(DEPDIR)/run_tests-test-condvar.Po \
test/$(DEPDIR)/run_tests-test-connect-unspecified.Po \
test/$(DEPDIR)/run_tests-test-connection-fail.Po \
test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po \
test/$(DEPDIR)/run_tests-test-default-loop-close.Po \
test/$(DEPDIR)/run_tests-test-delayed-accept.Po \
test/$(DEPDIR)/run_tests-test-dlerror.Po \
test/$(DEPDIR)/run_tests-test-eintr-handling.Po \
test/$(DEPDIR)/run_tests-test-embed.Po \
test/$(DEPDIR)/run_tests-test-emfile.Po \
test/$(DEPDIR)/run_tests-test-env-vars.Po \
test/$(DEPDIR)/run_tests-test-error.Po \
test/$(DEPDIR)/run_tests-test-fail-always.Po \
test/$(DEPDIR)/run_tests-test-fork.Po \
test/$(DEPDIR)/run_tests-test-fs-copyfile.Po \
test/$(DEPDIR)/run_tests-test-fs-event.Po \
test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po \
test/$(DEPDIR)/run_tests-test-fs-open-flags.Po \
test/$(DEPDIR)/run_tests-test-fs-poll.Po \
test/$(DEPDIR)/run_tests-test-fs-readdir.Po \
test/$(DEPDIR)/run_tests-test-fs.Po \
test/$(DEPDIR)/run_tests-test-get-currentexe.Po \
test/$(DEPDIR)/run_tests-test-get-loadavg.Po \
test/$(DEPDIR)/run_tests-test-get-memory.Po \
test/$(DEPDIR)/run_tests-test-get-passwd.Po \
test/$(DEPDIR)/run_tests-test-getaddrinfo.Po \
test/$(DEPDIR)/run_tests-test-gethostname.Po \
test/$(DEPDIR)/run_tests-test-getnameinfo.Po \
test/$(DEPDIR)/run_tests-test-getsockname.Po \
test/$(DEPDIR)/run_tests-test-getters-setters.Po \
test/$(DEPDIR)/run_tests-test-gettimeofday.Po \
test/$(DEPDIR)/run_tests-test-handle-fileno.Po \
test/$(DEPDIR)/run_tests-test-homedir.Po \
test/$(DEPDIR)/run_tests-test-hrtime.Po \
test/$(DEPDIR)/run_tests-test-idle.Po \
test/$(DEPDIR)/run_tests-test-idna.Po \
test/$(DEPDIR)/run_tests-test-ip-name.Po \
test/$(DEPDIR)/run_tests-test-ip4-addr.Po \
test/$(DEPDIR)/run_tests-test-ip6-addr.Po \
test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po \
test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po \
test/$(DEPDIR)/run_tests-test-ipc.Po \
test/$(DEPDIR)/run_tests-test-loop-alive.Po \
test/$(DEPDIR)/run_tests-test-loop-close.Po \
test/$(DEPDIR)/run_tests-test-loop-configure.Po \
test/$(DEPDIR)/run_tests-test-loop-handles.Po \
test/$(DEPDIR)/run_tests-test-loop-stop.Po \
test/$(DEPDIR)/run_tests-test-loop-time.Po \
test/$(DEPDIR)/run_tests-test-metrics.Po \
test/$(DEPDIR)/run_tests-test-multiple-listen.Po \
test/$(DEPDIR)/run_tests-test-mutexes.Po \
test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po \
test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po \
test/$(DEPDIR)/run_tests-test-osx-select.Po \
test/$(DEPDIR)/run_tests-test-pass-always.Po \
test/$(DEPDIR)/run_tests-test-ping-pong.Po \
test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po \
test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po \
test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po \
test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po \
test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po \
test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po \
test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po \
test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po \
test/$(DEPDIR)/run_tests-test-pipe-server-close.Po \
test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po \
test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po \
test/$(DEPDIR)/run_tests-test-platform-output.Po \
test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po \
test/$(DEPDIR)/run_tests-test-poll-close.Po \
test/$(DEPDIR)/run_tests-test-poll-closesocket.Po \
test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po \
test/$(DEPDIR)/run_tests-test-poll-oob.Po \
test/$(DEPDIR)/run_tests-test-poll.Po \
test/$(DEPDIR)/run_tests-test-process-priority.Po \
test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po \
test/$(DEPDIR)/run_tests-test-process-title.Po \
test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po \
test/$(DEPDIR)/run_tests-test-random.Po \
test/$(DEPDIR)/run_tests-test-readable-on-eof.Po \
test/$(DEPDIR)/run_tests-test-ref.Po \
test/$(DEPDIR)/run_tests-test-run-nowait.Po \
test/$(DEPDIR)/run_tests-test-run-once.Po \
test/$(DEPDIR)/run_tests-test-semaphore.Po \
test/$(DEPDIR)/run_tests-test-shutdown-close.Po \
test/$(DEPDIR)/run_tests-test-shutdown-eof.Po \
test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po \
test/$(DEPDIR)/run_tests-test-shutdown-twice.Po \
test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po \
test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po \
test/$(DEPDIR)/run_tests-test-signal.Po \
test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po \
test/$(DEPDIR)/run_tests-test-spawn.Po \
test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po \
test/$(DEPDIR)/run_tests-test-strscpy.Po \
test/$(DEPDIR)/run_tests-test-strtok.Po \
test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po \
test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po \
test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po \
test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po \
test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po \
test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po \
test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po \
test/$(DEPDIR)/run_tests-test-tcp-close.Po \
test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po \
test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po \
test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po \
test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po \
test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po \
test/$(DEPDIR)/run_tests-test-tcp-flags.Po \
test/$(DEPDIR)/run_tests-test-tcp-oob.Po \
test/$(DEPDIR)/run_tests-test-tcp-open.Po \
test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po \
test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po \
test/$(DEPDIR)/run_tests-test-tcp-rst.Po \
test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po \
test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po \
test/$(DEPDIR)/run_tests-test-tcp-try-write.Po \
test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po \
test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po \
test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po \
test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po \
test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po \
test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po \
test/$(DEPDIR)/run_tests-test-tcp-writealot.Po \
test/$(DEPDIR)/run_tests-test-test-macros.Po \
test/$(DEPDIR)/run_tests-test-thread-affinity.Po \
test/$(DEPDIR)/run_tests-test-thread-equal.Po \
test/$(DEPDIR)/run_tests-test-thread-priority.Po \
test/$(DEPDIR)/run_tests-test-thread.Po \
test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po \
test/$(DEPDIR)/run_tests-test-threadpool.Po \
test/$(DEPDIR)/run_tests-test-timer-again.Po \
test/$(DEPDIR)/run_tests-test-timer-from-check.Po \
test/$(DEPDIR)/run_tests-test-timer.Po \
test/$(DEPDIR)/run_tests-test-tmpdir.Po \
test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po \
test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po \
test/$(DEPDIR)/run_tests-test-tty.Po \
test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po \
test/$(DEPDIR)/run_tests-test-udp-bind.Po \
test/$(DEPDIR)/run_tests-test-udp-connect.Po \
test/$(DEPDIR)/run_tests-test-udp-connect6.Po \
test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po \
test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po \
test/$(DEPDIR)/run_tests-test-udp-ipv6.Po \
test/$(DEPDIR)/run_tests-test-udp-mmsg.Po \
test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po \
test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po \
test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po \
test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po \
test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po \
test/$(DEPDIR)/run_tests-test-udp-open.Po \
test/$(DEPDIR)/run_tests-test-udp-options.Po \
test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po \
test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po \
test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po \
test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po \
test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po \
test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po \
test/$(DEPDIR)/run_tests-test-udp-try-send.Po \
test/$(DEPDIR)/run_tests-test-uname.Po \
test/$(DEPDIR)/run_tests-test-walk-handles.Po \
test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
SOURCES = $(libuv_la_SOURCES) $(test_run_tests_SOURCES)
DIST_SOURCES = $(am__libuv_la_SOURCES_DIST) \
$(am__test_run_tests_SOURCES_DIST)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
DATA = $(pkgconfig_DATA)
am__uvinclude_HEADERS_DIST = include/uv/errno.h \
include/uv/threadpool.h include/uv/version.h include/uv/win.h \
include/uv/tree.h include/uv/unix.h include/uv/aix.h \
include/uv/posix.h include/uv/darwin.h include/uv/bsd.h \
include/uv/linux.h include/uv/sunos.h
HEADERS = $(include_HEADERS) $(uvinclude_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
AM_RECURSIVE_TARGETS = cscope
am__tty_colors_dummy = \
mgn= red= grn= lgn= blu= brg= std=; \
am__color_tests=no
am__tty_colors = { \
$(am__tty_colors_dummy); \
if test "X$(AM_COLOR_TESTS)" = Xno; then \
am__color_tests=no; \
elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
am__color_tests=yes; \
elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
am__color_tests=yes; \
fi; \
if test $$am__color_tests = yes; then \
red='[0;31m'; \
grn='[0;32m'; \
lgn='[1;32m'; \
blu='[1;34m'; \
mgn='[0;35m'; \
brg='[1m'; \
std='[m'; \
fi; \
}
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/libuv.pc.in \
$(top_srcdir)/test/fixtures/empty_file \
$(top_srcdir)/test/fixtures/load_error.node \
$(top_srcdir)/test/fixtures/lorem_ipsum.txt \
$(top_srcdir)/test/fixtures/one_file/one_file AUTHORS \
ChangeLog README.md ar-lib compile config.guess config.sub \
depcomp install-sh ltmain.sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__post_remove_distdir = $(am__remove_distdir)
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
DIST_TARGETS = dist-gzip
# Exists only to be overridden by the user if desired.
AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_CFLAGS = @AM_CFLAGS@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
ax_pthread_config = @ax_pthread_config@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \
$(am__append_3) $(am__append_6)
include_HEADERS = include/uv.h
uvincludedir = $(includedir)/uv
uvinclude_HEADERS = include/uv/errno.h include/uv/threadpool.h \
include/uv/version.h $(am__append_2) $(am__append_5) \
$(am__append_18) $(am__append_21) $(am__append_24) \
$(am__append_27) $(am__append_31) $(am__append_34) \
$(am__append_37) $(am__append_40) $(am__append_42) \
$(am__append_48) $(am__append_51) $(am__append_54)
CLEANFILES =
lib_LTLIBRARIES = libuv.la
libuv_la_CFLAGS = $(AM_CFLAGS) $(am__append_1) $(am__append_17) \
$(am__append_20) $(am__append_23) $(am__append_25) \
$(am__append_28) $(am__append_38) $(am__append_43) \
$(am__append_46) $(am__append_55) $(am__append_57)
libuv_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined -version-info 1:0:0 \
$(am__append_58)
libuv_la_SOURCES = src/fs-poll.c src/heap-inl.h src/idna.c src/idna.h \
src/inet.c src/queue.h src/random.c src/strscpy.c \
src/strscpy.h src/thread-common.c src/threadpool.c src/timer.c \
src/uv-data-getter-setters.c src/uv-common.c src/uv-common.h \
src/version.c src/strtok.c src/strtok.h $(am__append_4) \
$(am__append_7) $(am__append_19) $(am__append_22) \
$(am__append_26) $(am__append_29) $(am__append_32) \
$(am__append_35) $(am__append_39) $(am__append_41) \
$(am__append_44) $(am__append_47) $(am__append_49) \
$(am__append_52) $(am__append_56) $(am__append_59)
EXTRA_DIST = test/fixtures/empty_file \
test/fixtures/load_error.node \
test/fixtures/lorem_ipsum.txt \
test/fixtures/one_file/one_file \
include \
docs \
img \
CONTRIBUTING.md \
LICENSE \
LICENSE-extra \
README.md
test_run_tests_CFLAGS = $(AM_CFLAGS) $(am__append_8) $(am__append_11) \
$(am__append_12) $(am__append_13) $(am__append_14) \
$(am__append_15) $(am__append_16)
test_run_tests_LDFLAGS = $(AM_LDFLAGS) $(am__append_30) \
$(am__append_33) $(am__append_36) $(am__append_45) \
$(am__append_50) $(am__append_53)
test_run_tests_SOURCES = test/blackhole-server.c test/echo-server.c \
test/run-tests.c test/runner.c test/runner.h test/task.h \
test/test-active.c test/test-async.c test/test-async-null-cb.c \
test/test-barrier.c test/test-callback-stack.c \
test/test-close-fd.c test/test-close-order.c \
test/test-condvar.c test/test-connect-unspecified.c \
test/test-connection-fail.c test/test-cwd-and-chdir.c \
test/test-default-loop-close.c test/test-delayed-accept.c \
test/test-dlerror.c test/test-eintr-handling.c \
test/test-embed.c test/test-emfile.c test/test-env-vars.c \
test/test-error.c test/test-fail-always.c \
test/test-fs-copyfile.c test/test-fs-event.c \
test/test-fs-poll.c test/test-fs.c test/test-fs-readdir.c \
test/test-fs-fd-hash.c test/test-fs-open-flags.c \
test/test-fork.c test/test-getters-setters.c \
test/test-get-currentexe.c test/test-get-loadavg.c \
test/test-get-memory.c test/test-get-passwd.c \
test/test-getaddrinfo.c test/test-gethostname.c \
test/test-getnameinfo.c test/test-getsockname.c \
test/test-gettimeofday.c test/test-handle-fileno.c \
test/test-homedir.c test/test-hrtime.c test/test-idle.c \
test/test-idna.c test/test-ip4-addr.c test/test-ip6-addr.c \
test/test-ip-name.c test/test-ipc-heavy-traffic-deadlock-bug.c \
test/test-ipc-send-recv.c test/test-ipc.c test/test-list.h \
test/test-loop-handles.c test/test-loop-alive.c \
test/test-loop-close.c test/test-loop-stop.c \
test/test-loop-time.c test/test-loop-configure.c \
test/test-metrics.c test/test-multiple-listen.c \
test/test-mutexes.c \
test/test-not-readable-nor-writable-on-read-error.c \
test/test-not-writable-after-shutdown.c test/test-osx-select.c \
test/test-pass-always.c test/test-ping-pong.c \
test/test-pipe-bind-error.c test/test-pipe-connect-error.c \
test/test-pipe-connect-multiple.c \
test/test-pipe-connect-prepare.c test/test-pipe-getsockname.c \
test/test-pipe-pending-instances.c test/test-pipe-sendmsg.c \
test/test-pipe-server-close.c \
test/test-pipe-close-stdout-read-stdin.c \
test/test-pipe-set-non-blocking.c test/test-pipe-set-fchmod.c \
test/test-platform-output.c test/test-poll.c \
test/test-poll-close.c \
test/test-poll-close-doesnt-corrupt-stack.c \
test/test-poll-closesocket.c test/test-poll-multiple-handles.c \
test/test-poll-oob.c test/test-process-priority.c \
test/test-process-title.c test/test-process-title-threadsafe.c \
test/test-queue-foreach-delete.c test/test-random.c \
test/test-readable-on-eof.c test/test-ref.c \
test/test-run-nowait.c test/test-run-once.c \
test/test-semaphore.c test/test-shutdown-close.c \
test/test-shutdown-eof.c test/test-shutdown-simultaneous.c \
test/test-shutdown-twice.c test/test-signal-multiple-loops.c \
test/test-signal-pending-on-close.c test/test-signal.c \
test/test-socket-buffer-size.c test/test-spawn.c \
test/test-stdio-over-pipes.c test/test-strscpy.c \
test/test-strtok.c test/test-tcp-alloc-cb-fail.c \
test/test-tcp-bind-error.c test/test-tcp-bind6-error.c \
test/test-tcp-close-accept.c \
test/test-tcp-close-while-connecting.c \
test/test-tcp-close-after-read-timeout.c test/test-tcp-close.c \
test/test-tcp-close-reset.c \
test/test-tcp-create-socket-early.c \
test/test-tcp-connect-error-after-write.c \
test/test-tcp-connect-error.c test/test-tcp-connect-timeout.c \
test/test-tcp-connect6-error.c test/test-tcp-flags.c \
test/test-tcp-open.c test/test-tcp-read-stop.c \
test/test-tcp-read-stop-start.c test/test-tcp-rst.c \
test/test-tcp-shutdown-after-write.c \
test/test-tcp-unexpected-read.c test/test-tcp-oob.c \
test/test-tcp-write-to-half-open-connection.c \
test/test-tcp-write-after-connect.c test/test-tcp-writealot.c \
test/test-tcp-write-fail.c test/test-tcp-try-write.c \
test/test-tcp-write-in-a-row.c test/test-tcp-try-write-error.c \
test/test-tcp-write-queue-order.c test/test-test-macros.c \
test/test-thread-equal.c test/test-thread.c \
test/test-thread-affinity.c test/test-thread-priority.c \
test/test-threadpool-cancel.c test/test-threadpool.c \
test/test-timer-again.c test/test-timer-from-check.c \
test/test-timer.c test/test-tmpdir.c \
test/test-tty-duplicate-key.c \
test/test-tty-escape-sequence-processing.c test/test-tty.c \
test/test-udp-alloc-cb-fail.c test/test-udp-bind.c \
test/test-udp-connect.c test/test-udp-connect6.c \
test/test-udp-create-socket-early.c \
test/test-udp-dgram-too-big.c test/test-udp-ipv6.c \
test/test-udp-mmsg.c test/test-udp-multicast-interface.c \
test/test-udp-multicast-interface6.c \
test/test-udp-multicast-join.c test/test-udp-multicast-join6.c \
test/test-udp-multicast-ttl.c test/test-udp-open.c \
test/test-udp-options.c test/test-udp-send-and-recv.c \
test/test-udp-send-hang-loop.c test/test-udp-send-immediate.c \
test/test-udp-sendmmsg-error.c \
test/test-udp-send-unreachable.c test/test-udp-try-send.c \
test/test-udp-recv-in-a-row.c test/test-uname.c \
test/test-walk-handles.c test/test-watcher-cross-stop.c \
$(am__append_9) $(am__append_10)
test_run_tests_LDADD = libuv.la
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = @PACKAGE_NAME@.pc
all: all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
libuv.pc: $(top_builddir)/config.status $(srcdir)/libuv.pc.in
cd $(top_builddir) && $(SHELL) ./config.status $@
clean-checkPROGRAMS:
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
}
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
@list='$(lib_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
src/$(am__dirstamp):
@$(MKDIR_P) src
@: > src/$(am__dirstamp)
src/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/$(DEPDIR)
@: > src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-fs-poll.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-idna.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-inet.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-random.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-strscpy.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-thread-common.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-threadpool.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-timer.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-uv-data-getter-setters.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-uv-common.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-version.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/libuv_la-strtok.lo: src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/win/$(am__dirstamp):
@$(MKDIR_P) src/win
@: > src/win/$(am__dirstamp)
src/win/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/win/$(DEPDIR)
@: > src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-async.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-core.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-detect-wakeup.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-dl.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-error.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-fs-event.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-fs.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-getaddrinfo.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-getnameinfo.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-handle.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-loop-watcher.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-pipe.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-poll.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-process-stdio.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-process.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-signal.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-stream.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-tcp.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-thread.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-tty.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-udp.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-util.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-winapi.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/win/libuv_la-winsock.lo: src/win/$(am__dirstamp) \
src/win/$(DEPDIR)/$(am__dirstamp)
src/unix/$(am__dirstamp):
@$(MKDIR_P) src/unix
@: > src/unix/$(am__dirstamp)
src/unix/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/unix/$(DEPDIR)
@: > src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-async.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-core.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-dl.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-fs.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-getaddrinfo.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-getnameinfo.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-loop-watcher.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-loop.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-pipe.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-poll.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-process.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-random-devurandom.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-signal.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-stream.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-tcp.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-thread.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-tty.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-udp.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-aix.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-aix-common.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-ibmi.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-posix-poll.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-no-fsevents.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-cygwin.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-bsd-ifaddrs.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-no-proctitle.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-posix-hrtime.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-procfs-exepath.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-sysinfo-loadavg.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-sysinfo-memory.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-darwin-proctitle.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-darwin.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-fsevents.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-kqueue.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-proctitle.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-random-getentropy.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-bsd-proctitle.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-freebsd.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-random-getrandom.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-haiku.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-hurd.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-linux.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-random-sysctl-linux.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-netbsd.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-openbsd.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-sunos.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-os390.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
src/unix/libuv_la-os390-syscalls.lo: src/unix/$(am__dirstamp) \
src/unix/$(DEPDIR)/$(am__dirstamp)
libuv.la: $(libuv_la_OBJECTS) $(libuv_la_DEPENDENCIES) $(EXTRA_libuv_la_DEPENDENCIES)
$(AM_V_CCLD)$(libuv_la_LINK) -rpath $(libdir) $(libuv_la_OBJECTS) $(libuv_la_LIBADD) $(LIBS)
test/$(am__dirstamp):
@$(MKDIR_P) test
@: > test/$(am__dirstamp)
test/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) test/$(DEPDIR)
@: > test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-blackhole-server.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-echo-server.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-run-tests.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-runner.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-active.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-async.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-async-null-cb.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-barrier.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-callback-stack.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-close-fd.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-close-order.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-condvar.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-connect-unspecified.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-connection-fail.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-cwd-and-chdir.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-default-loop-close.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-delayed-accept.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-dlerror.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-eintr-handling.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-embed.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-emfile.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-env-vars.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-error.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fail-always.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-copyfile.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-event.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-poll.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-readdir.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-fd-hash.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fs-open-flags.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-fork.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-getters-setters.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-get-currentexe.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-get-loadavg.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-get-memory.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-get-passwd.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-getaddrinfo.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-gethostname.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-getnameinfo.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-getsockname.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-gettimeofday.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-handle-fileno.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-homedir.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-hrtime.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-idle.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-idna.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ip4-addr.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ip6-addr.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ip-name.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ipc-heavy-traffic-deadlock-bug.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ipc-send-recv.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ipc.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-handles.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-alive.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-close.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-stop.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-time.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-loop-configure.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-metrics.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-multiple-listen.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-mutexes.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-not-readable-nor-writable-on-read-error.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-not-writable-after-shutdown.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-osx-select.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pass-always.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ping-pong.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-bind-error.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-connect-error.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-connect-multiple.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-connect-prepare.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-getsockname.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-pending-instances.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-sendmsg.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-server-close.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-close-stdout-read-stdin.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-set-non-blocking.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-pipe-set-fchmod.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-platform-output.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll-close.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll-close-doesnt-corrupt-stack.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll-closesocket.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll-multiple-handles.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-poll-oob.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-process-priority.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-process-title.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-process-title-threadsafe.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-queue-foreach-delete.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-random.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-readable-on-eof.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-ref.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-run-nowait.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-run-once.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-semaphore.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-shutdown-close.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-shutdown-eof.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-shutdown-simultaneous.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-shutdown-twice.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-signal-multiple-loops.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-signal-pending-on-close.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-signal.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-socket-buffer-size.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-spawn.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-stdio-over-pipes.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-strscpy.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-strtok.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-alloc-cb-fail.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-bind-error.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-bind6-error.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-close-accept.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-close-while-connecting.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-close-after-read-timeout.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-close.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-close-reset.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-create-socket-early.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-connect-error-after-write.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-connect-error.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-connect-timeout.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-connect6-error.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-flags.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-open.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-read-stop.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-read-stop-start.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-rst.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-shutdown-after-write.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-unexpected-read.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-oob.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-write-to-half-open-connection.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-write-after-connect.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-writealot.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-write-fail.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-try-write.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-write-in-a-row.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-try-write-error.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tcp-write-queue-order.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-test-macros.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-thread-equal.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-thread.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-thread-affinity.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-thread-priority.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-threadpool-cancel.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-threadpool.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-timer-again.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-timer-from-check.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-timer.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tmpdir.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tty-duplicate-key.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tty-escape-sequence-processing.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-tty.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-alloc-cb-fail.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-bind.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-connect.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-connect6.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-create-socket-early.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-dgram-too-big.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-ipv6.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-mmsg.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-multicast-interface.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-multicast-interface6.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-multicast-join.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-multicast-join6.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-multicast-ttl.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-open.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-options.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-send-and-recv.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-send-hang-loop.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-send-immediate.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-sendmmsg-error.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-send-unreachable.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-try-send.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-udp-recv-in-a-row.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-uname.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-walk-handles.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-test-watcher-cross-stop.$(OBJEXT): \
test/$(am__dirstamp) test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-runner-win.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run_tests-runner-unix.$(OBJEXT): test/$(am__dirstamp) \
test/$(DEPDIR)/$(am__dirstamp)
test/run-tests$(EXEEXT): $(test_run_tests_OBJECTS) $(test_run_tests_DEPENDENCIES) $(EXTRA_test_run_tests_DEPENDENCIES) test/$(am__dirstamp)
@rm -f test/run-tests$(EXEEXT)
$(AM_V_CCLD)$(test_run_tests_LINK) $(test_run_tests_OBJECTS) $(test_run_tests_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f src/*.$(OBJEXT)
-rm -f src/*.lo
-rm -f src/unix/*.$(OBJEXT)
-rm -f src/unix/*.lo
-rm -f src/win/*.$(OBJEXT)
-rm -f src/win/*.lo
-rm -f test/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-fs-poll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-idna.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-inet.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-random.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-strscpy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-strtok.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-thread-common.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-threadpool.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-timer.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-uv-common.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/libuv_la-version.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-aix-common.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-aix.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-async.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-core.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-cygwin.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-darwin.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-dl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-freebsd.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-fs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-fsevents.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-getnameinfo.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-haiku.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-hurd.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-ibmi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-kqueue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-linux.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-loop-watcher.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-loop.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-netbsd.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-no-fsevents.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-no-proctitle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-openbsd.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-os390.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-pipe.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-poll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-posix-poll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-process.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-proctitle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-random-devurandom.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-random-getentropy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-random-getrandom.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-signal.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-stream.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-sunos.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-tcp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-thread.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-tty.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/unix/$(DEPDIR)/libuv_la-udp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-async.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-core.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-detect-wakeup.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-dl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-error.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-fs-event.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-fs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-getaddrinfo.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-getnameinfo.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-handle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-loop-watcher.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-pipe.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-poll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-process-stdio.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-process.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-signal.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-stream.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-tcp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-thread.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-tty.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-udp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-util.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-winapi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/win/$(DEPDIR)/libuv_la-winsock.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-blackhole-server.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-echo-server.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-run-tests.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-runner-unix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-runner-win.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-runner.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-active.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-async-null-cb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-async.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-barrier.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-callback-stack.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-close-fd.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-close-order.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-condvar.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-connect-unspecified.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-connection-fail.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-default-loop-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-delayed-accept.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-dlerror.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-eintr-handling.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-embed.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-emfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-env-vars.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fail-always.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fork.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-copyfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-event.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-open-flags.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-poll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs-readdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-fs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-get-currentexe.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-get-loadavg.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-get-memory.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-get-passwd.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-getaddrinfo.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-gethostname.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-getnameinfo.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-getsockname.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-getters-setters.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-gettimeofday.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-handle-fileno.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-homedir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-hrtime.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-idle.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-idna.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ip-name.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ip4-addr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ip6-addr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ipc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-alive.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-configure.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-handles.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-stop.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-loop-time.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-metrics.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-multiple-listen.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-mutexes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-osx-select.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pass-always.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ping-pong.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-server-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-platform-output.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll-closesocket.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll-oob.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-poll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-process-priority.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-process-title.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-random.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-readable-on-eof.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-ref.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-run-nowait.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-run-once.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-semaphore.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-shutdown-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-shutdown-eof.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-shutdown-twice.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-signal.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-spawn.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-strscpy.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-strtok.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-close.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-flags.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-oob.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-open.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-rst.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-try-write.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tcp-writealot.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-test-macros.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-thread-affinity.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-thread-equal.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-thread-priority.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-threadpool.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-timer-again.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-timer-from-check.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-timer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tmpdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-tty.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-bind.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-connect.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-connect6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-ipv6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-mmsg.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-open.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-options.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-udp-try-send.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-uname.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-walk-handles.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
src/libuv_la-fs-poll.lo: src/fs-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-fs-poll.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-fs-poll.Tpo -c -o src/libuv_la-fs-poll.lo `test -f 'src/fs-poll.c' || echo '$(srcdir)/'`src/fs-poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-fs-poll.Tpo src/$(DEPDIR)/libuv_la-fs-poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/fs-poll.c' object='src/libuv_la-fs-poll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-fs-poll.lo `test -f 'src/fs-poll.c' || echo '$(srcdir)/'`src/fs-poll.c
src/libuv_la-idna.lo: src/idna.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-idna.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-idna.Tpo -c -o src/libuv_la-idna.lo `test -f 'src/idna.c' || echo '$(srcdir)/'`src/idna.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-idna.Tpo src/$(DEPDIR)/libuv_la-idna.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/idna.c' object='src/libuv_la-idna.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-idna.lo `test -f 'src/idna.c' || echo '$(srcdir)/'`src/idna.c
src/libuv_la-inet.lo: src/inet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-inet.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-inet.Tpo -c -o src/libuv_la-inet.lo `test -f 'src/inet.c' || echo '$(srcdir)/'`src/inet.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-inet.Tpo src/$(DEPDIR)/libuv_la-inet.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/inet.c' object='src/libuv_la-inet.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-inet.lo `test -f 'src/inet.c' || echo '$(srcdir)/'`src/inet.c
src/libuv_la-random.lo: src/random.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-random.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-random.Tpo -c -o src/libuv_la-random.lo `test -f 'src/random.c' || echo '$(srcdir)/'`src/random.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-random.Tpo src/$(DEPDIR)/libuv_la-random.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/random.c' object='src/libuv_la-random.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-random.lo `test -f 'src/random.c' || echo '$(srcdir)/'`src/random.c
src/libuv_la-strscpy.lo: src/strscpy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-strscpy.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-strscpy.Tpo -c -o src/libuv_la-strscpy.lo `test -f 'src/strscpy.c' || echo '$(srcdir)/'`src/strscpy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-strscpy.Tpo src/$(DEPDIR)/libuv_la-strscpy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/strscpy.c' object='src/libuv_la-strscpy.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-strscpy.lo `test -f 'src/strscpy.c' || echo '$(srcdir)/'`src/strscpy.c
src/libuv_la-thread-common.lo: src/thread-common.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-thread-common.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-thread-common.Tpo -c -o src/libuv_la-thread-common.lo `test -f 'src/thread-common.c' || echo '$(srcdir)/'`src/thread-common.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-thread-common.Tpo src/$(DEPDIR)/libuv_la-thread-common.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/thread-common.c' object='src/libuv_la-thread-common.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-thread-common.lo `test -f 'src/thread-common.c' || echo '$(srcdir)/'`src/thread-common.c
src/libuv_la-threadpool.lo: src/threadpool.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-threadpool.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-threadpool.Tpo -c -o src/libuv_la-threadpool.lo `test -f 'src/threadpool.c' || echo '$(srcdir)/'`src/threadpool.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-threadpool.Tpo src/$(DEPDIR)/libuv_la-threadpool.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/threadpool.c' object='src/libuv_la-threadpool.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-threadpool.lo `test -f 'src/threadpool.c' || echo '$(srcdir)/'`src/threadpool.c
src/libuv_la-timer.lo: src/timer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-timer.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-timer.Tpo -c -o src/libuv_la-timer.lo `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-timer.Tpo src/$(DEPDIR)/libuv_la-timer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/timer.c' object='src/libuv_la-timer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-timer.lo `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
src/libuv_la-uv-data-getter-setters.lo: src/uv-data-getter-setters.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-uv-data-getter-setters.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Tpo -c -o src/libuv_la-uv-data-getter-setters.lo `test -f 'src/uv-data-getter-setters.c' || echo '$(srcdir)/'`src/uv-data-getter-setters.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Tpo src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/uv-data-getter-setters.c' object='src/libuv_la-uv-data-getter-setters.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-uv-data-getter-setters.lo `test -f 'src/uv-data-getter-setters.c' || echo '$(srcdir)/'`src/uv-data-getter-setters.c
src/libuv_la-uv-common.lo: src/uv-common.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-uv-common.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-uv-common.Tpo -c -o src/libuv_la-uv-common.lo `test -f 'src/uv-common.c' || echo '$(srcdir)/'`src/uv-common.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-uv-common.Tpo src/$(DEPDIR)/libuv_la-uv-common.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/uv-common.c' object='src/libuv_la-uv-common.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-uv-common.lo `test -f 'src/uv-common.c' || echo '$(srcdir)/'`src/uv-common.c
src/libuv_la-version.lo: src/version.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-version.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-version.Tpo -c -o src/libuv_la-version.lo `test -f 'src/version.c' || echo '$(srcdir)/'`src/version.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-version.Tpo src/$(DEPDIR)/libuv_la-version.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/version.c' object='src/libuv_la-version.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-version.lo `test -f 'src/version.c' || echo '$(srcdir)/'`src/version.c
src/libuv_la-strtok.lo: src/strtok.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/libuv_la-strtok.lo -MD -MP -MF src/$(DEPDIR)/libuv_la-strtok.Tpo -c -o src/libuv_la-strtok.lo `test -f 'src/strtok.c' || echo '$(srcdir)/'`src/strtok.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/libuv_la-strtok.Tpo src/$(DEPDIR)/libuv_la-strtok.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/strtok.c' object='src/libuv_la-strtok.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/libuv_la-strtok.lo `test -f 'src/strtok.c' || echo '$(srcdir)/'`src/strtok.c
src/win/libuv_la-async.lo: src/win/async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-async.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-async.Tpo -c -o src/win/libuv_la-async.lo `test -f 'src/win/async.c' || echo '$(srcdir)/'`src/win/async.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-async.Tpo src/win/$(DEPDIR)/libuv_la-async.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/async.c' object='src/win/libuv_la-async.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-async.lo `test -f 'src/win/async.c' || echo '$(srcdir)/'`src/win/async.c
src/win/libuv_la-core.lo: src/win/core.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-core.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-core.Tpo -c -o src/win/libuv_la-core.lo `test -f 'src/win/core.c' || echo '$(srcdir)/'`src/win/core.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-core.Tpo src/win/$(DEPDIR)/libuv_la-core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/core.c' object='src/win/libuv_la-core.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-core.lo `test -f 'src/win/core.c' || echo '$(srcdir)/'`src/win/core.c
src/win/libuv_la-detect-wakeup.lo: src/win/detect-wakeup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-detect-wakeup.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-detect-wakeup.Tpo -c -o src/win/libuv_la-detect-wakeup.lo `test -f 'src/win/detect-wakeup.c' || echo '$(srcdir)/'`src/win/detect-wakeup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-detect-wakeup.Tpo src/win/$(DEPDIR)/libuv_la-detect-wakeup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/detect-wakeup.c' object='src/win/libuv_la-detect-wakeup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-detect-wakeup.lo `test -f 'src/win/detect-wakeup.c' || echo '$(srcdir)/'`src/win/detect-wakeup.c
src/win/libuv_la-dl.lo: src/win/dl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-dl.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-dl.Tpo -c -o src/win/libuv_la-dl.lo `test -f 'src/win/dl.c' || echo '$(srcdir)/'`src/win/dl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-dl.Tpo src/win/$(DEPDIR)/libuv_la-dl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/dl.c' object='src/win/libuv_la-dl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-dl.lo `test -f 'src/win/dl.c' || echo '$(srcdir)/'`src/win/dl.c
src/win/libuv_la-error.lo: src/win/error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-error.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-error.Tpo -c -o src/win/libuv_la-error.lo `test -f 'src/win/error.c' || echo '$(srcdir)/'`src/win/error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-error.Tpo src/win/$(DEPDIR)/libuv_la-error.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/error.c' object='src/win/libuv_la-error.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-error.lo `test -f 'src/win/error.c' || echo '$(srcdir)/'`src/win/error.c
src/win/libuv_la-fs-event.lo: src/win/fs-event.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-fs-event.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-fs-event.Tpo -c -o src/win/libuv_la-fs-event.lo `test -f 'src/win/fs-event.c' || echo '$(srcdir)/'`src/win/fs-event.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-fs-event.Tpo src/win/$(DEPDIR)/libuv_la-fs-event.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/fs-event.c' object='src/win/libuv_la-fs-event.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-fs-event.lo `test -f 'src/win/fs-event.c' || echo '$(srcdir)/'`src/win/fs-event.c
src/win/libuv_la-fs.lo: src/win/fs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-fs.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-fs.Tpo -c -o src/win/libuv_la-fs.lo `test -f 'src/win/fs.c' || echo '$(srcdir)/'`src/win/fs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-fs.Tpo src/win/$(DEPDIR)/libuv_la-fs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/fs.c' object='src/win/libuv_la-fs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-fs.lo `test -f 'src/win/fs.c' || echo '$(srcdir)/'`src/win/fs.c
src/win/libuv_la-getaddrinfo.lo: src/win/getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-getaddrinfo.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-getaddrinfo.Tpo -c -o src/win/libuv_la-getaddrinfo.lo `test -f 'src/win/getaddrinfo.c' || echo '$(srcdir)/'`src/win/getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-getaddrinfo.Tpo src/win/$(DEPDIR)/libuv_la-getaddrinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/getaddrinfo.c' object='src/win/libuv_la-getaddrinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-getaddrinfo.lo `test -f 'src/win/getaddrinfo.c' || echo '$(srcdir)/'`src/win/getaddrinfo.c
src/win/libuv_la-getnameinfo.lo: src/win/getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-getnameinfo.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-getnameinfo.Tpo -c -o src/win/libuv_la-getnameinfo.lo `test -f 'src/win/getnameinfo.c' || echo '$(srcdir)/'`src/win/getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-getnameinfo.Tpo src/win/$(DEPDIR)/libuv_la-getnameinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/getnameinfo.c' object='src/win/libuv_la-getnameinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-getnameinfo.lo `test -f 'src/win/getnameinfo.c' || echo '$(srcdir)/'`src/win/getnameinfo.c
src/win/libuv_la-handle.lo: src/win/handle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-handle.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-handle.Tpo -c -o src/win/libuv_la-handle.lo `test -f 'src/win/handle.c' || echo '$(srcdir)/'`src/win/handle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-handle.Tpo src/win/$(DEPDIR)/libuv_la-handle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/handle.c' object='src/win/libuv_la-handle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-handle.lo `test -f 'src/win/handle.c' || echo '$(srcdir)/'`src/win/handle.c
src/win/libuv_la-loop-watcher.lo: src/win/loop-watcher.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-loop-watcher.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-loop-watcher.Tpo -c -o src/win/libuv_la-loop-watcher.lo `test -f 'src/win/loop-watcher.c' || echo '$(srcdir)/'`src/win/loop-watcher.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-loop-watcher.Tpo src/win/$(DEPDIR)/libuv_la-loop-watcher.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/loop-watcher.c' object='src/win/libuv_la-loop-watcher.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-loop-watcher.lo `test -f 'src/win/loop-watcher.c' || echo '$(srcdir)/'`src/win/loop-watcher.c
src/win/libuv_la-pipe.lo: src/win/pipe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-pipe.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-pipe.Tpo -c -o src/win/libuv_la-pipe.lo `test -f 'src/win/pipe.c' || echo '$(srcdir)/'`src/win/pipe.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-pipe.Tpo src/win/$(DEPDIR)/libuv_la-pipe.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/pipe.c' object='src/win/libuv_la-pipe.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-pipe.lo `test -f 'src/win/pipe.c' || echo '$(srcdir)/'`src/win/pipe.c
src/win/libuv_la-poll.lo: src/win/poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-poll.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-poll.Tpo -c -o src/win/libuv_la-poll.lo `test -f 'src/win/poll.c' || echo '$(srcdir)/'`src/win/poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-poll.Tpo src/win/$(DEPDIR)/libuv_la-poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/poll.c' object='src/win/libuv_la-poll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-poll.lo `test -f 'src/win/poll.c' || echo '$(srcdir)/'`src/win/poll.c
src/win/libuv_la-process-stdio.lo: src/win/process-stdio.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-process-stdio.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-process-stdio.Tpo -c -o src/win/libuv_la-process-stdio.lo `test -f 'src/win/process-stdio.c' || echo '$(srcdir)/'`src/win/process-stdio.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-process-stdio.Tpo src/win/$(DEPDIR)/libuv_la-process-stdio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/process-stdio.c' object='src/win/libuv_la-process-stdio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-process-stdio.lo `test -f 'src/win/process-stdio.c' || echo '$(srcdir)/'`src/win/process-stdio.c
src/win/libuv_la-process.lo: src/win/process.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-process.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-process.Tpo -c -o src/win/libuv_la-process.lo `test -f 'src/win/process.c' || echo '$(srcdir)/'`src/win/process.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-process.Tpo src/win/$(DEPDIR)/libuv_la-process.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/process.c' object='src/win/libuv_la-process.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-process.lo `test -f 'src/win/process.c' || echo '$(srcdir)/'`src/win/process.c
src/win/libuv_la-signal.lo: src/win/signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-signal.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-signal.Tpo -c -o src/win/libuv_la-signal.lo `test -f 'src/win/signal.c' || echo '$(srcdir)/'`src/win/signal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-signal.Tpo src/win/$(DEPDIR)/libuv_la-signal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/signal.c' object='src/win/libuv_la-signal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-signal.lo `test -f 'src/win/signal.c' || echo '$(srcdir)/'`src/win/signal.c
src/win/libuv_la-stream.lo: src/win/stream.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-stream.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-stream.Tpo -c -o src/win/libuv_la-stream.lo `test -f 'src/win/stream.c' || echo '$(srcdir)/'`src/win/stream.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-stream.Tpo src/win/$(DEPDIR)/libuv_la-stream.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/stream.c' object='src/win/libuv_la-stream.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-stream.lo `test -f 'src/win/stream.c' || echo '$(srcdir)/'`src/win/stream.c
src/win/libuv_la-tcp.lo: src/win/tcp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-tcp.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-tcp.Tpo -c -o src/win/libuv_la-tcp.lo `test -f 'src/win/tcp.c' || echo '$(srcdir)/'`src/win/tcp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-tcp.Tpo src/win/$(DEPDIR)/libuv_la-tcp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/tcp.c' object='src/win/libuv_la-tcp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-tcp.lo `test -f 'src/win/tcp.c' || echo '$(srcdir)/'`src/win/tcp.c
src/win/libuv_la-thread.lo: src/win/thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-thread.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-thread.Tpo -c -o src/win/libuv_la-thread.lo `test -f 'src/win/thread.c' || echo '$(srcdir)/'`src/win/thread.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-thread.Tpo src/win/$(DEPDIR)/libuv_la-thread.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/thread.c' object='src/win/libuv_la-thread.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-thread.lo `test -f 'src/win/thread.c' || echo '$(srcdir)/'`src/win/thread.c
src/win/libuv_la-tty.lo: src/win/tty.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-tty.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-tty.Tpo -c -o src/win/libuv_la-tty.lo `test -f 'src/win/tty.c' || echo '$(srcdir)/'`src/win/tty.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-tty.Tpo src/win/$(DEPDIR)/libuv_la-tty.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/tty.c' object='src/win/libuv_la-tty.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-tty.lo `test -f 'src/win/tty.c' || echo '$(srcdir)/'`src/win/tty.c
src/win/libuv_la-udp.lo: src/win/udp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-udp.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-udp.Tpo -c -o src/win/libuv_la-udp.lo `test -f 'src/win/udp.c' || echo '$(srcdir)/'`src/win/udp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-udp.Tpo src/win/$(DEPDIR)/libuv_la-udp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/udp.c' object='src/win/libuv_la-udp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-udp.lo `test -f 'src/win/udp.c' || echo '$(srcdir)/'`src/win/udp.c
src/win/libuv_la-util.lo: src/win/util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-util.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-util.Tpo -c -o src/win/libuv_la-util.lo `test -f 'src/win/util.c' || echo '$(srcdir)/'`src/win/util.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-util.Tpo src/win/$(DEPDIR)/libuv_la-util.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/util.c' object='src/win/libuv_la-util.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-util.lo `test -f 'src/win/util.c' || echo '$(srcdir)/'`src/win/util.c
src/win/libuv_la-winapi.lo: src/win/winapi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-winapi.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-winapi.Tpo -c -o src/win/libuv_la-winapi.lo `test -f 'src/win/winapi.c' || echo '$(srcdir)/'`src/win/winapi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-winapi.Tpo src/win/$(DEPDIR)/libuv_la-winapi.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/winapi.c' object='src/win/libuv_la-winapi.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-winapi.lo `test -f 'src/win/winapi.c' || echo '$(srcdir)/'`src/win/winapi.c
src/win/libuv_la-winsock.lo: src/win/winsock.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/win/libuv_la-winsock.lo -MD -MP -MF src/win/$(DEPDIR)/libuv_la-winsock.Tpo -c -o src/win/libuv_la-winsock.lo `test -f 'src/win/winsock.c' || echo '$(srcdir)/'`src/win/winsock.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/win/$(DEPDIR)/libuv_la-winsock.Tpo src/win/$(DEPDIR)/libuv_la-winsock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/win/winsock.c' object='src/win/libuv_la-winsock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/win/libuv_la-winsock.lo `test -f 'src/win/winsock.c' || echo '$(srcdir)/'`src/win/winsock.c
src/unix/libuv_la-async.lo: src/unix/async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-async.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-async.Tpo -c -o src/unix/libuv_la-async.lo `test -f 'src/unix/async.c' || echo '$(srcdir)/'`src/unix/async.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-async.Tpo src/unix/$(DEPDIR)/libuv_la-async.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/async.c' object='src/unix/libuv_la-async.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-async.lo `test -f 'src/unix/async.c' || echo '$(srcdir)/'`src/unix/async.c
src/unix/libuv_la-core.lo: src/unix/core.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-core.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-core.Tpo -c -o src/unix/libuv_la-core.lo `test -f 'src/unix/core.c' || echo '$(srcdir)/'`src/unix/core.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-core.Tpo src/unix/$(DEPDIR)/libuv_la-core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/core.c' object='src/unix/libuv_la-core.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-core.lo `test -f 'src/unix/core.c' || echo '$(srcdir)/'`src/unix/core.c
src/unix/libuv_la-dl.lo: src/unix/dl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-dl.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-dl.Tpo -c -o src/unix/libuv_la-dl.lo `test -f 'src/unix/dl.c' || echo '$(srcdir)/'`src/unix/dl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-dl.Tpo src/unix/$(DEPDIR)/libuv_la-dl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/dl.c' object='src/unix/libuv_la-dl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-dl.lo `test -f 'src/unix/dl.c' || echo '$(srcdir)/'`src/unix/dl.c
src/unix/libuv_la-fs.lo: src/unix/fs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-fs.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-fs.Tpo -c -o src/unix/libuv_la-fs.lo `test -f 'src/unix/fs.c' || echo '$(srcdir)/'`src/unix/fs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-fs.Tpo src/unix/$(DEPDIR)/libuv_la-fs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/fs.c' object='src/unix/libuv_la-fs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-fs.lo `test -f 'src/unix/fs.c' || echo '$(srcdir)/'`src/unix/fs.c
src/unix/libuv_la-getaddrinfo.lo: src/unix/getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-getaddrinfo.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Tpo -c -o src/unix/libuv_la-getaddrinfo.lo `test -f 'src/unix/getaddrinfo.c' || echo '$(srcdir)/'`src/unix/getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Tpo src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/getaddrinfo.c' object='src/unix/libuv_la-getaddrinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-getaddrinfo.lo `test -f 'src/unix/getaddrinfo.c' || echo '$(srcdir)/'`src/unix/getaddrinfo.c
src/unix/libuv_la-getnameinfo.lo: src/unix/getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-getnameinfo.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-getnameinfo.Tpo -c -o src/unix/libuv_la-getnameinfo.lo `test -f 'src/unix/getnameinfo.c' || echo '$(srcdir)/'`src/unix/getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-getnameinfo.Tpo src/unix/$(DEPDIR)/libuv_la-getnameinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/getnameinfo.c' object='src/unix/libuv_la-getnameinfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-getnameinfo.lo `test -f 'src/unix/getnameinfo.c' || echo '$(srcdir)/'`src/unix/getnameinfo.c
src/unix/libuv_la-loop-watcher.lo: src/unix/loop-watcher.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-loop-watcher.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-loop-watcher.Tpo -c -o src/unix/libuv_la-loop-watcher.lo `test -f 'src/unix/loop-watcher.c' || echo '$(srcdir)/'`src/unix/loop-watcher.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-loop-watcher.Tpo src/unix/$(DEPDIR)/libuv_la-loop-watcher.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/loop-watcher.c' object='src/unix/libuv_la-loop-watcher.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-loop-watcher.lo `test -f 'src/unix/loop-watcher.c' || echo '$(srcdir)/'`src/unix/loop-watcher.c
src/unix/libuv_la-loop.lo: src/unix/loop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-loop.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-loop.Tpo -c -o src/unix/libuv_la-loop.lo `test -f 'src/unix/loop.c' || echo '$(srcdir)/'`src/unix/loop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-loop.Tpo src/unix/$(DEPDIR)/libuv_la-loop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/loop.c' object='src/unix/libuv_la-loop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-loop.lo `test -f 'src/unix/loop.c' || echo '$(srcdir)/'`src/unix/loop.c
src/unix/libuv_la-pipe.lo: src/unix/pipe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-pipe.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-pipe.Tpo -c -o src/unix/libuv_la-pipe.lo `test -f 'src/unix/pipe.c' || echo '$(srcdir)/'`src/unix/pipe.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-pipe.Tpo src/unix/$(DEPDIR)/libuv_la-pipe.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/pipe.c' object='src/unix/libuv_la-pipe.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-pipe.lo `test -f 'src/unix/pipe.c' || echo '$(srcdir)/'`src/unix/pipe.c
src/unix/libuv_la-poll.lo: src/unix/poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-poll.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-poll.Tpo -c -o src/unix/libuv_la-poll.lo `test -f 'src/unix/poll.c' || echo '$(srcdir)/'`src/unix/poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-poll.Tpo src/unix/$(DEPDIR)/libuv_la-poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/poll.c' object='src/unix/libuv_la-poll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-poll.lo `test -f 'src/unix/poll.c' || echo '$(srcdir)/'`src/unix/poll.c
src/unix/libuv_la-process.lo: src/unix/process.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-process.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-process.Tpo -c -o src/unix/libuv_la-process.lo `test -f 'src/unix/process.c' || echo '$(srcdir)/'`src/unix/process.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-process.Tpo src/unix/$(DEPDIR)/libuv_la-process.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/process.c' object='src/unix/libuv_la-process.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-process.lo `test -f 'src/unix/process.c' || echo '$(srcdir)/'`src/unix/process.c
src/unix/libuv_la-random-devurandom.lo: src/unix/random-devurandom.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-random-devurandom.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-random-devurandom.Tpo -c -o src/unix/libuv_la-random-devurandom.lo `test -f 'src/unix/random-devurandom.c' || echo '$(srcdir)/'`src/unix/random-devurandom.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-random-devurandom.Tpo src/unix/$(DEPDIR)/libuv_la-random-devurandom.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/random-devurandom.c' object='src/unix/libuv_la-random-devurandom.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-random-devurandom.lo `test -f 'src/unix/random-devurandom.c' || echo '$(srcdir)/'`src/unix/random-devurandom.c
src/unix/libuv_la-signal.lo: src/unix/signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-signal.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-signal.Tpo -c -o src/unix/libuv_la-signal.lo `test -f 'src/unix/signal.c' || echo '$(srcdir)/'`src/unix/signal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-signal.Tpo src/unix/$(DEPDIR)/libuv_la-signal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/signal.c' object='src/unix/libuv_la-signal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-signal.lo `test -f 'src/unix/signal.c' || echo '$(srcdir)/'`src/unix/signal.c
src/unix/libuv_la-stream.lo: src/unix/stream.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-stream.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-stream.Tpo -c -o src/unix/libuv_la-stream.lo `test -f 'src/unix/stream.c' || echo '$(srcdir)/'`src/unix/stream.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-stream.Tpo src/unix/$(DEPDIR)/libuv_la-stream.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/stream.c' object='src/unix/libuv_la-stream.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-stream.lo `test -f 'src/unix/stream.c' || echo '$(srcdir)/'`src/unix/stream.c
src/unix/libuv_la-tcp.lo: src/unix/tcp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-tcp.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-tcp.Tpo -c -o src/unix/libuv_la-tcp.lo `test -f 'src/unix/tcp.c' || echo '$(srcdir)/'`src/unix/tcp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-tcp.Tpo src/unix/$(DEPDIR)/libuv_la-tcp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/tcp.c' object='src/unix/libuv_la-tcp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-tcp.lo `test -f 'src/unix/tcp.c' || echo '$(srcdir)/'`src/unix/tcp.c
src/unix/libuv_la-thread.lo: src/unix/thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-thread.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-thread.Tpo -c -o src/unix/libuv_la-thread.lo `test -f 'src/unix/thread.c' || echo '$(srcdir)/'`src/unix/thread.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-thread.Tpo src/unix/$(DEPDIR)/libuv_la-thread.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/thread.c' object='src/unix/libuv_la-thread.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-thread.lo `test -f 'src/unix/thread.c' || echo '$(srcdir)/'`src/unix/thread.c
src/unix/libuv_la-tty.lo: src/unix/tty.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-tty.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-tty.Tpo -c -o src/unix/libuv_la-tty.lo `test -f 'src/unix/tty.c' || echo '$(srcdir)/'`src/unix/tty.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-tty.Tpo src/unix/$(DEPDIR)/libuv_la-tty.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/tty.c' object='src/unix/libuv_la-tty.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-tty.lo `test -f 'src/unix/tty.c' || echo '$(srcdir)/'`src/unix/tty.c
src/unix/libuv_la-udp.lo: src/unix/udp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-udp.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-udp.Tpo -c -o src/unix/libuv_la-udp.lo `test -f 'src/unix/udp.c' || echo '$(srcdir)/'`src/unix/udp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-udp.Tpo src/unix/$(DEPDIR)/libuv_la-udp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/udp.c' object='src/unix/libuv_la-udp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-udp.lo `test -f 'src/unix/udp.c' || echo '$(srcdir)/'`src/unix/udp.c
src/unix/libuv_la-aix.lo: src/unix/aix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-aix.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-aix.Tpo -c -o src/unix/libuv_la-aix.lo `test -f 'src/unix/aix.c' || echo '$(srcdir)/'`src/unix/aix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-aix.Tpo src/unix/$(DEPDIR)/libuv_la-aix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/aix.c' object='src/unix/libuv_la-aix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-aix.lo `test -f 'src/unix/aix.c' || echo '$(srcdir)/'`src/unix/aix.c
src/unix/libuv_la-aix-common.lo: src/unix/aix-common.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-aix-common.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-aix-common.Tpo -c -o src/unix/libuv_la-aix-common.lo `test -f 'src/unix/aix-common.c' || echo '$(srcdir)/'`src/unix/aix-common.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-aix-common.Tpo src/unix/$(DEPDIR)/libuv_la-aix-common.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/aix-common.c' object='src/unix/libuv_la-aix-common.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-aix-common.lo `test -f 'src/unix/aix-common.c' || echo '$(srcdir)/'`src/unix/aix-common.c
src/unix/libuv_la-ibmi.lo: src/unix/ibmi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-ibmi.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-ibmi.Tpo -c -o src/unix/libuv_la-ibmi.lo `test -f 'src/unix/ibmi.c' || echo '$(srcdir)/'`src/unix/ibmi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-ibmi.Tpo src/unix/$(DEPDIR)/libuv_la-ibmi.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/ibmi.c' object='src/unix/libuv_la-ibmi.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-ibmi.lo `test -f 'src/unix/ibmi.c' || echo '$(srcdir)/'`src/unix/ibmi.c
src/unix/libuv_la-posix-poll.lo: src/unix/posix-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-posix-poll.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-posix-poll.Tpo -c -o src/unix/libuv_la-posix-poll.lo `test -f 'src/unix/posix-poll.c' || echo '$(srcdir)/'`src/unix/posix-poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-posix-poll.Tpo src/unix/$(DEPDIR)/libuv_la-posix-poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/posix-poll.c' object='src/unix/libuv_la-posix-poll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-posix-poll.lo `test -f 'src/unix/posix-poll.c' || echo '$(srcdir)/'`src/unix/posix-poll.c
src/unix/libuv_la-no-fsevents.lo: src/unix/no-fsevents.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-no-fsevents.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-no-fsevents.Tpo -c -o src/unix/libuv_la-no-fsevents.lo `test -f 'src/unix/no-fsevents.c' || echo '$(srcdir)/'`src/unix/no-fsevents.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-no-fsevents.Tpo src/unix/$(DEPDIR)/libuv_la-no-fsevents.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/no-fsevents.c' object='src/unix/libuv_la-no-fsevents.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-no-fsevents.lo `test -f 'src/unix/no-fsevents.c' || echo '$(srcdir)/'`src/unix/no-fsevents.c
src/unix/libuv_la-cygwin.lo: src/unix/cygwin.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-cygwin.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-cygwin.Tpo -c -o src/unix/libuv_la-cygwin.lo `test -f 'src/unix/cygwin.c' || echo '$(srcdir)/'`src/unix/cygwin.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-cygwin.Tpo src/unix/$(DEPDIR)/libuv_la-cygwin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/cygwin.c' object='src/unix/libuv_la-cygwin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-cygwin.lo `test -f 'src/unix/cygwin.c' || echo '$(srcdir)/'`src/unix/cygwin.c
src/unix/libuv_la-bsd-ifaddrs.lo: src/unix/bsd-ifaddrs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-bsd-ifaddrs.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Tpo -c -o src/unix/libuv_la-bsd-ifaddrs.lo `test -f 'src/unix/bsd-ifaddrs.c' || echo '$(srcdir)/'`src/unix/bsd-ifaddrs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Tpo src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/bsd-ifaddrs.c' object='src/unix/libuv_la-bsd-ifaddrs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-bsd-ifaddrs.lo `test -f 'src/unix/bsd-ifaddrs.c' || echo '$(srcdir)/'`src/unix/bsd-ifaddrs.c
src/unix/libuv_la-no-proctitle.lo: src/unix/no-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-no-proctitle.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-no-proctitle.Tpo -c -o src/unix/libuv_la-no-proctitle.lo `test -f 'src/unix/no-proctitle.c' || echo '$(srcdir)/'`src/unix/no-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-no-proctitle.Tpo src/unix/$(DEPDIR)/libuv_la-no-proctitle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/no-proctitle.c' object='src/unix/libuv_la-no-proctitle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-no-proctitle.lo `test -f 'src/unix/no-proctitle.c' || echo '$(srcdir)/'`src/unix/no-proctitle.c
src/unix/libuv_la-posix-hrtime.lo: src/unix/posix-hrtime.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-posix-hrtime.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Tpo -c -o src/unix/libuv_la-posix-hrtime.lo `test -f 'src/unix/posix-hrtime.c' || echo '$(srcdir)/'`src/unix/posix-hrtime.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Tpo src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/posix-hrtime.c' object='src/unix/libuv_la-posix-hrtime.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-posix-hrtime.lo `test -f 'src/unix/posix-hrtime.c' || echo '$(srcdir)/'`src/unix/posix-hrtime.c
src/unix/libuv_la-procfs-exepath.lo: src/unix/procfs-exepath.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-procfs-exepath.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Tpo -c -o src/unix/libuv_la-procfs-exepath.lo `test -f 'src/unix/procfs-exepath.c' || echo '$(srcdir)/'`src/unix/procfs-exepath.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Tpo src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/procfs-exepath.c' object='src/unix/libuv_la-procfs-exepath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-procfs-exepath.lo `test -f 'src/unix/procfs-exepath.c' || echo '$(srcdir)/'`src/unix/procfs-exepath.c
src/unix/libuv_la-sysinfo-loadavg.lo: src/unix/sysinfo-loadavg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-sysinfo-loadavg.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Tpo -c -o src/unix/libuv_la-sysinfo-loadavg.lo `test -f 'src/unix/sysinfo-loadavg.c' || echo '$(srcdir)/'`src/unix/sysinfo-loadavg.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Tpo src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/sysinfo-loadavg.c' object='src/unix/libuv_la-sysinfo-loadavg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-sysinfo-loadavg.lo `test -f 'src/unix/sysinfo-loadavg.c' || echo '$(srcdir)/'`src/unix/sysinfo-loadavg.c
src/unix/libuv_la-sysinfo-memory.lo: src/unix/sysinfo-memory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-sysinfo-memory.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Tpo -c -o src/unix/libuv_la-sysinfo-memory.lo `test -f 'src/unix/sysinfo-memory.c' || echo '$(srcdir)/'`src/unix/sysinfo-memory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Tpo src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/sysinfo-memory.c' object='src/unix/libuv_la-sysinfo-memory.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-sysinfo-memory.lo `test -f 'src/unix/sysinfo-memory.c' || echo '$(srcdir)/'`src/unix/sysinfo-memory.c
src/unix/libuv_la-darwin-proctitle.lo: src/unix/darwin-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-darwin-proctitle.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Tpo -c -o src/unix/libuv_la-darwin-proctitle.lo `test -f 'src/unix/darwin-proctitle.c' || echo '$(srcdir)/'`src/unix/darwin-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Tpo src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/darwin-proctitle.c' object='src/unix/libuv_la-darwin-proctitle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-darwin-proctitle.lo `test -f 'src/unix/darwin-proctitle.c' || echo '$(srcdir)/'`src/unix/darwin-proctitle.c
src/unix/libuv_la-darwin.lo: src/unix/darwin.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-darwin.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-darwin.Tpo -c -o src/unix/libuv_la-darwin.lo `test -f 'src/unix/darwin.c' || echo '$(srcdir)/'`src/unix/darwin.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-darwin.Tpo src/unix/$(DEPDIR)/libuv_la-darwin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/darwin.c' object='src/unix/libuv_la-darwin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-darwin.lo `test -f 'src/unix/darwin.c' || echo '$(srcdir)/'`src/unix/darwin.c
src/unix/libuv_la-fsevents.lo: src/unix/fsevents.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-fsevents.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-fsevents.Tpo -c -o src/unix/libuv_la-fsevents.lo `test -f 'src/unix/fsevents.c' || echo '$(srcdir)/'`src/unix/fsevents.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-fsevents.Tpo src/unix/$(DEPDIR)/libuv_la-fsevents.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/fsevents.c' object='src/unix/libuv_la-fsevents.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-fsevents.lo `test -f 'src/unix/fsevents.c' || echo '$(srcdir)/'`src/unix/fsevents.c
src/unix/libuv_la-kqueue.lo: src/unix/kqueue.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-kqueue.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-kqueue.Tpo -c -o src/unix/libuv_la-kqueue.lo `test -f 'src/unix/kqueue.c' || echo '$(srcdir)/'`src/unix/kqueue.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-kqueue.Tpo src/unix/$(DEPDIR)/libuv_la-kqueue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/kqueue.c' object='src/unix/libuv_la-kqueue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-kqueue.lo `test -f 'src/unix/kqueue.c' || echo '$(srcdir)/'`src/unix/kqueue.c
src/unix/libuv_la-proctitle.lo: src/unix/proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-proctitle.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-proctitle.Tpo -c -o src/unix/libuv_la-proctitle.lo `test -f 'src/unix/proctitle.c' || echo '$(srcdir)/'`src/unix/proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-proctitle.Tpo src/unix/$(DEPDIR)/libuv_la-proctitle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/proctitle.c' object='src/unix/libuv_la-proctitle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-proctitle.lo `test -f 'src/unix/proctitle.c' || echo '$(srcdir)/'`src/unix/proctitle.c
src/unix/libuv_la-random-getentropy.lo: src/unix/random-getentropy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-random-getentropy.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-random-getentropy.Tpo -c -o src/unix/libuv_la-random-getentropy.lo `test -f 'src/unix/random-getentropy.c' || echo '$(srcdir)/'`src/unix/random-getentropy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-random-getentropy.Tpo src/unix/$(DEPDIR)/libuv_la-random-getentropy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/random-getentropy.c' object='src/unix/libuv_la-random-getentropy.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-random-getentropy.lo `test -f 'src/unix/random-getentropy.c' || echo '$(srcdir)/'`src/unix/random-getentropy.c
src/unix/libuv_la-bsd-proctitle.lo: src/unix/bsd-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-bsd-proctitle.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Tpo -c -o src/unix/libuv_la-bsd-proctitle.lo `test -f 'src/unix/bsd-proctitle.c' || echo '$(srcdir)/'`src/unix/bsd-proctitle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Tpo src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/bsd-proctitle.c' object='src/unix/libuv_la-bsd-proctitle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-bsd-proctitle.lo `test -f 'src/unix/bsd-proctitle.c' || echo '$(srcdir)/'`src/unix/bsd-proctitle.c
src/unix/libuv_la-freebsd.lo: src/unix/freebsd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-freebsd.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-freebsd.Tpo -c -o src/unix/libuv_la-freebsd.lo `test -f 'src/unix/freebsd.c' || echo '$(srcdir)/'`src/unix/freebsd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-freebsd.Tpo src/unix/$(DEPDIR)/libuv_la-freebsd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/freebsd.c' object='src/unix/libuv_la-freebsd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-freebsd.lo `test -f 'src/unix/freebsd.c' || echo '$(srcdir)/'`src/unix/freebsd.c
src/unix/libuv_la-random-getrandom.lo: src/unix/random-getrandom.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-random-getrandom.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-random-getrandom.Tpo -c -o src/unix/libuv_la-random-getrandom.lo `test -f 'src/unix/random-getrandom.c' || echo '$(srcdir)/'`src/unix/random-getrandom.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-random-getrandom.Tpo src/unix/$(DEPDIR)/libuv_la-random-getrandom.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/random-getrandom.c' object='src/unix/libuv_la-random-getrandom.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-random-getrandom.lo `test -f 'src/unix/random-getrandom.c' || echo '$(srcdir)/'`src/unix/random-getrandom.c
src/unix/libuv_la-haiku.lo: src/unix/haiku.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-haiku.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-haiku.Tpo -c -o src/unix/libuv_la-haiku.lo `test -f 'src/unix/haiku.c' || echo '$(srcdir)/'`src/unix/haiku.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-haiku.Tpo src/unix/$(DEPDIR)/libuv_la-haiku.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/haiku.c' object='src/unix/libuv_la-haiku.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-haiku.lo `test -f 'src/unix/haiku.c' || echo '$(srcdir)/'`src/unix/haiku.c
src/unix/libuv_la-hurd.lo: src/unix/hurd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-hurd.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-hurd.Tpo -c -o src/unix/libuv_la-hurd.lo `test -f 'src/unix/hurd.c' || echo '$(srcdir)/'`src/unix/hurd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-hurd.Tpo src/unix/$(DEPDIR)/libuv_la-hurd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/hurd.c' object='src/unix/libuv_la-hurd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-hurd.lo `test -f 'src/unix/hurd.c' || echo '$(srcdir)/'`src/unix/hurd.c
src/unix/libuv_la-linux.lo: src/unix/linux.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-linux.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-linux.Tpo -c -o src/unix/libuv_la-linux.lo `test -f 'src/unix/linux.c' || echo '$(srcdir)/'`src/unix/linux.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-linux.Tpo src/unix/$(DEPDIR)/libuv_la-linux.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/linux.c' object='src/unix/libuv_la-linux.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-linux.lo `test -f 'src/unix/linux.c' || echo '$(srcdir)/'`src/unix/linux.c
src/unix/libuv_la-random-sysctl-linux.lo: src/unix/random-sysctl-linux.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-random-sysctl-linux.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Tpo -c -o src/unix/libuv_la-random-sysctl-linux.lo `test -f 'src/unix/random-sysctl-linux.c' || echo '$(srcdir)/'`src/unix/random-sysctl-linux.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Tpo src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/random-sysctl-linux.c' object='src/unix/libuv_la-random-sysctl-linux.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-random-sysctl-linux.lo `test -f 'src/unix/random-sysctl-linux.c' || echo '$(srcdir)/'`src/unix/random-sysctl-linux.c
src/unix/libuv_la-netbsd.lo: src/unix/netbsd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-netbsd.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-netbsd.Tpo -c -o src/unix/libuv_la-netbsd.lo `test -f 'src/unix/netbsd.c' || echo '$(srcdir)/'`src/unix/netbsd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-netbsd.Tpo src/unix/$(DEPDIR)/libuv_la-netbsd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/netbsd.c' object='src/unix/libuv_la-netbsd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-netbsd.lo `test -f 'src/unix/netbsd.c' || echo '$(srcdir)/'`src/unix/netbsd.c
src/unix/libuv_la-openbsd.lo: src/unix/openbsd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-openbsd.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-openbsd.Tpo -c -o src/unix/libuv_la-openbsd.lo `test -f 'src/unix/openbsd.c' || echo '$(srcdir)/'`src/unix/openbsd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-openbsd.Tpo src/unix/$(DEPDIR)/libuv_la-openbsd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/openbsd.c' object='src/unix/libuv_la-openbsd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-openbsd.lo `test -f 'src/unix/openbsd.c' || echo '$(srcdir)/'`src/unix/openbsd.c
src/unix/libuv_la-sunos.lo: src/unix/sunos.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-sunos.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-sunos.Tpo -c -o src/unix/libuv_la-sunos.lo `test -f 'src/unix/sunos.c' || echo '$(srcdir)/'`src/unix/sunos.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-sunos.Tpo src/unix/$(DEPDIR)/libuv_la-sunos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/sunos.c' object='src/unix/libuv_la-sunos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-sunos.lo `test -f 'src/unix/sunos.c' || echo '$(srcdir)/'`src/unix/sunos.c
src/unix/libuv_la-os390.lo: src/unix/os390.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-os390.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-os390.Tpo -c -o src/unix/libuv_la-os390.lo `test -f 'src/unix/os390.c' || echo '$(srcdir)/'`src/unix/os390.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-os390.Tpo src/unix/$(DEPDIR)/libuv_la-os390.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/os390.c' object='src/unix/libuv_la-os390.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-os390.lo `test -f 'src/unix/os390.c' || echo '$(srcdir)/'`src/unix/os390.c
src/unix/libuv_la-os390-syscalls.lo: src/unix/os390-syscalls.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -MT src/unix/libuv_la-os390-syscalls.lo -MD -MP -MF src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Tpo -c -o src/unix/libuv_la-os390-syscalls.lo `test -f 'src/unix/os390-syscalls.c' || echo '$(srcdir)/'`src/unix/os390-syscalls.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Tpo src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/unix/os390-syscalls.c' object='src/unix/libuv_la-os390-syscalls.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libuv_la_CFLAGS) $(CFLAGS) -c -o src/unix/libuv_la-os390-syscalls.lo `test -f 'src/unix/os390-syscalls.c' || echo '$(srcdir)/'`src/unix/os390-syscalls.c
test/run_tests-blackhole-server.o: test/blackhole-server.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-blackhole-server.o -MD -MP -MF test/$(DEPDIR)/run_tests-blackhole-server.Tpo -c -o test/run_tests-blackhole-server.o `test -f 'test/blackhole-server.c' || echo '$(srcdir)/'`test/blackhole-server.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-blackhole-server.Tpo test/$(DEPDIR)/run_tests-blackhole-server.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/blackhole-server.c' object='test/run_tests-blackhole-server.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-blackhole-server.o `test -f 'test/blackhole-server.c' || echo '$(srcdir)/'`test/blackhole-server.c
test/run_tests-blackhole-server.obj: test/blackhole-server.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-blackhole-server.obj -MD -MP -MF test/$(DEPDIR)/run_tests-blackhole-server.Tpo -c -o test/run_tests-blackhole-server.obj `if test -f 'test/blackhole-server.c'; then $(CYGPATH_W) 'test/blackhole-server.c'; else $(CYGPATH_W) '$(srcdir)/test/blackhole-server.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-blackhole-server.Tpo test/$(DEPDIR)/run_tests-blackhole-server.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/blackhole-server.c' object='test/run_tests-blackhole-server.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-blackhole-server.obj `if test -f 'test/blackhole-server.c'; then $(CYGPATH_W) 'test/blackhole-server.c'; else $(CYGPATH_W) '$(srcdir)/test/blackhole-server.c'; fi`
test/run_tests-echo-server.o: test/echo-server.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-echo-server.o -MD -MP -MF test/$(DEPDIR)/run_tests-echo-server.Tpo -c -o test/run_tests-echo-server.o `test -f 'test/echo-server.c' || echo '$(srcdir)/'`test/echo-server.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-echo-server.Tpo test/$(DEPDIR)/run_tests-echo-server.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/echo-server.c' object='test/run_tests-echo-server.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-echo-server.o `test -f 'test/echo-server.c' || echo '$(srcdir)/'`test/echo-server.c
test/run_tests-echo-server.obj: test/echo-server.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-echo-server.obj -MD -MP -MF test/$(DEPDIR)/run_tests-echo-server.Tpo -c -o test/run_tests-echo-server.obj `if test -f 'test/echo-server.c'; then $(CYGPATH_W) 'test/echo-server.c'; else $(CYGPATH_W) '$(srcdir)/test/echo-server.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-echo-server.Tpo test/$(DEPDIR)/run_tests-echo-server.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/echo-server.c' object='test/run_tests-echo-server.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-echo-server.obj `if test -f 'test/echo-server.c'; then $(CYGPATH_W) 'test/echo-server.c'; else $(CYGPATH_W) '$(srcdir)/test/echo-server.c'; fi`
test/run_tests-run-tests.o: test/run-tests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-run-tests.o -MD -MP -MF test/$(DEPDIR)/run_tests-run-tests.Tpo -c -o test/run_tests-run-tests.o `test -f 'test/run-tests.c' || echo '$(srcdir)/'`test/run-tests.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-run-tests.Tpo test/$(DEPDIR)/run_tests-run-tests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/run-tests.c' object='test/run_tests-run-tests.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-run-tests.o `test -f 'test/run-tests.c' || echo '$(srcdir)/'`test/run-tests.c
test/run_tests-run-tests.obj: test/run-tests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-run-tests.obj -MD -MP -MF test/$(DEPDIR)/run_tests-run-tests.Tpo -c -o test/run_tests-run-tests.obj `if test -f 'test/run-tests.c'; then $(CYGPATH_W) 'test/run-tests.c'; else $(CYGPATH_W) '$(srcdir)/test/run-tests.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-run-tests.Tpo test/$(DEPDIR)/run_tests-run-tests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/run-tests.c' object='test/run_tests-run-tests.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-run-tests.obj `if test -f 'test/run-tests.c'; then $(CYGPATH_W) 'test/run-tests.c'; else $(CYGPATH_W) '$(srcdir)/test/run-tests.c'; fi`
test/run_tests-runner.o: test/runner.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner.o -MD -MP -MF test/$(DEPDIR)/run_tests-runner.Tpo -c -o test/run_tests-runner.o `test -f 'test/runner.c' || echo '$(srcdir)/'`test/runner.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner.Tpo test/$(DEPDIR)/run_tests-runner.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner.c' object='test/run_tests-runner.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner.o `test -f 'test/runner.c' || echo '$(srcdir)/'`test/runner.c
test/run_tests-runner.obj: test/runner.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner.obj -MD -MP -MF test/$(DEPDIR)/run_tests-runner.Tpo -c -o test/run_tests-runner.obj `if test -f 'test/runner.c'; then $(CYGPATH_W) 'test/runner.c'; else $(CYGPATH_W) '$(srcdir)/test/runner.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner.Tpo test/$(DEPDIR)/run_tests-runner.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner.c' object='test/run_tests-runner.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner.obj `if test -f 'test/runner.c'; then $(CYGPATH_W) 'test/runner.c'; else $(CYGPATH_W) '$(srcdir)/test/runner.c'; fi`
test/run_tests-test-active.o: test/test-active.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-active.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-active.Tpo -c -o test/run_tests-test-active.o `test -f 'test/test-active.c' || echo '$(srcdir)/'`test/test-active.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-active.Tpo test/$(DEPDIR)/run_tests-test-active.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-active.c' object='test/run_tests-test-active.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-active.o `test -f 'test/test-active.c' || echo '$(srcdir)/'`test/test-active.c
test/run_tests-test-active.obj: test/test-active.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-active.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-active.Tpo -c -o test/run_tests-test-active.obj `if test -f 'test/test-active.c'; then $(CYGPATH_W) 'test/test-active.c'; else $(CYGPATH_W) '$(srcdir)/test/test-active.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-active.Tpo test/$(DEPDIR)/run_tests-test-active.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-active.c' object='test/run_tests-test-active.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-active.obj `if test -f 'test/test-active.c'; then $(CYGPATH_W) 'test/test-active.c'; else $(CYGPATH_W) '$(srcdir)/test/test-active.c'; fi`
test/run_tests-test-async.o: test/test-async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-async.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-async.Tpo -c -o test/run_tests-test-async.o `test -f 'test/test-async.c' || echo '$(srcdir)/'`test/test-async.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-async.Tpo test/$(DEPDIR)/run_tests-test-async.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-async.c' object='test/run_tests-test-async.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-async.o `test -f 'test/test-async.c' || echo '$(srcdir)/'`test/test-async.c
test/run_tests-test-async.obj: test/test-async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-async.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-async.Tpo -c -o test/run_tests-test-async.obj `if test -f 'test/test-async.c'; then $(CYGPATH_W) 'test/test-async.c'; else $(CYGPATH_W) '$(srcdir)/test/test-async.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-async.Tpo test/$(DEPDIR)/run_tests-test-async.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-async.c' object='test/run_tests-test-async.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-async.obj `if test -f 'test/test-async.c'; then $(CYGPATH_W) 'test/test-async.c'; else $(CYGPATH_W) '$(srcdir)/test/test-async.c'; fi`
test/run_tests-test-async-null-cb.o: test/test-async-null-cb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-async-null-cb.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-async-null-cb.Tpo -c -o test/run_tests-test-async-null-cb.o `test -f 'test/test-async-null-cb.c' || echo '$(srcdir)/'`test/test-async-null-cb.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-async-null-cb.Tpo test/$(DEPDIR)/run_tests-test-async-null-cb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-async-null-cb.c' object='test/run_tests-test-async-null-cb.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-async-null-cb.o `test -f 'test/test-async-null-cb.c' || echo '$(srcdir)/'`test/test-async-null-cb.c
test/run_tests-test-async-null-cb.obj: test/test-async-null-cb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-async-null-cb.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-async-null-cb.Tpo -c -o test/run_tests-test-async-null-cb.obj `if test -f 'test/test-async-null-cb.c'; then $(CYGPATH_W) 'test/test-async-null-cb.c'; else $(CYGPATH_W) '$(srcdir)/test/test-async-null-cb.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-async-null-cb.Tpo test/$(DEPDIR)/run_tests-test-async-null-cb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-async-null-cb.c' object='test/run_tests-test-async-null-cb.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-async-null-cb.obj `if test -f 'test/test-async-null-cb.c'; then $(CYGPATH_W) 'test/test-async-null-cb.c'; else $(CYGPATH_W) '$(srcdir)/test/test-async-null-cb.c'; fi`
test/run_tests-test-barrier.o: test/test-barrier.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-barrier.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-barrier.Tpo -c -o test/run_tests-test-barrier.o `test -f 'test/test-barrier.c' || echo '$(srcdir)/'`test/test-barrier.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-barrier.Tpo test/$(DEPDIR)/run_tests-test-barrier.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-barrier.c' object='test/run_tests-test-barrier.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-barrier.o `test -f 'test/test-barrier.c' || echo '$(srcdir)/'`test/test-barrier.c
test/run_tests-test-barrier.obj: test/test-barrier.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-barrier.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-barrier.Tpo -c -o test/run_tests-test-barrier.obj `if test -f 'test/test-barrier.c'; then $(CYGPATH_W) 'test/test-barrier.c'; else $(CYGPATH_W) '$(srcdir)/test/test-barrier.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-barrier.Tpo test/$(DEPDIR)/run_tests-test-barrier.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-barrier.c' object='test/run_tests-test-barrier.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-barrier.obj `if test -f 'test/test-barrier.c'; then $(CYGPATH_W) 'test/test-barrier.c'; else $(CYGPATH_W) '$(srcdir)/test/test-barrier.c'; fi`
test/run_tests-test-callback-stack.o: test/test-callback-stack.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-callback-stack.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-callback-stack.Tpo -c -o test/run_tests-test-callback-stack.o `test -f 'test/test-callback-stack.c' || echo '$(srcdir)/'`test/test-callback-stack.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-callback-stack.Tpo test/$(DEPDIR)/run_tests-test-callback-stack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-callback-stack.c' object='test/run_tests-test-callback-stack.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-callback-stack.o `test -f 'test/test-callback-stack.c' || echo '$(srcdir)/'`test/test-callback-stack.c
test/run_tests-test-callback-stack.obj: test/test-callback-stack.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-callback-stack.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-callback-stack.Tpo -c -o test/run_tests-test-callback-stack.obj `if test -f 'test/test-callback-stack.c'; then $(CYGPATH_W) 'test/test-callback-stack.c'; else $(CYGPATH_W) '$(srcdir)/test/test-callback-stack.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-callback-stack.Tpo test/$(DEPDIR)/run_tests-test-callback-stack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-callback-stack.c' object='test/run_tests-test-callback-stack.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-callback-stack.obj `if test -f 'test/test-callback-stack.c'; then $(CYGPATH_W) 'test/test-callback-stack.c'; else $(CYGPATH_W) '$(srcdir)/test/test-callback-stack.c'; fi`
test/run_tests-test-close-fd.o: test/test-close-fd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-close-fd.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-close-fd.Tpo -c -o test/run_tests-test-close-fd.o `test -f 'test/test-close-fd.c' || echo '$(srcdir)/'`test/test-close-fd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-close-fd.Tpo test/$(DEPDIR)/run_tests-test-close-fd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-close-fd.c' object='test/run_tests-test-close-fd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-close-fd.o `test -f 'test/test-close-fd.c' || echo '$(srcdir)/'`test/test-close-fd.c
test/run_tests-test-close-fd.obj: test/test-close-fd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-close-fd.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-close-fd.Tpo -c -o test/run_tests-test-close-fd.obj `if test -f 'test/test-close-fd.c'; then $(CYGPATH_W) 'test/test-close-fd.c'; else $(CYGPATH_W) '$(srcdir)/test/test-close-fd.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-close-fd.Tpo test/$(DEPDIR)/run_tests-test-close-fd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-close-fd.c' object='test/run_tests-test-close-fd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-close-fd.obj `if test -f 'test/test-close-fd.c'; then $(CYGPATH_W) 'test/test-close-fd.c'; else $(CYGPATH_W) '$(srcdir)/test/test-close-fd.c'; fi`
test/run_tests-test-close-order.o: test/test-close-order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-close-order.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-close-order.Tpo -c -o test/run_tests-test-close-order.o `test -f 'test/test-close-order.c' || echo '$(srcdir)/'`test/test-close-order.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-close-order.Tpo test/$(DEPDIR)/run_tests-test-close-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-close-order.c' object='test/run_tests-test-close-order.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-close-order.o `test -f 'test/test-close-order.c' || echo '$(srcdir)/'`test/test-close-order.c
test/run_tests-test-close-order.obj: test/test-close-order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-close-order.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-close-order.Tpo -c -o test/run_tests-test-close-order.obj `if test -f 'test/test-close-order.c'; then $(CYGPATH_W) 'test/test-close-order.c'; else $(CYGPATH_W) '$(srcdir)/test/test-close-order.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-close-order.Tpo test/$(DEPDIR)/run_tests-test-close-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-close-order.c' object='test/run_tests-test-close-order.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-close-order.obj `if test -f 'test/test-close-order.c'; then $(CYGPATH_W) 'test/test-close-order.c'; else $(CYGPATH_W) '$(srcdir)/test/test-close-order.c'; fi`
test/run_tests-test-condvar.o: test/test-condvar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-condvar.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-condvar.Tpo -c -o test/run_tests-test-condvar.o `test -f 'test/test-condvar.c' || echo '$(srcdir)/'`test/test-condvar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-condvar.Tpo test/$(DEPDIR)/run_tests-test-condvar.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-condvar.c' object='test/run_tests-test-condvar.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-condvar.o `test -f 'test/test-condvar.c' || echo '$(srcdir)/'`test/test-condvar.c
test/run_tests-test-condvar.obj: test/test-condvar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-condvar.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-condvar.Tpo -c -o test/run_tests-test-condvar.obj `if test -f 'test/test-condvar.c'; then $(CYGPATH_W) 'test/test-condvar.c'; else $(CYGPATH_W) '$(srcdir)/test/test-condvar.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-condvar.Tpo test/$(DEPDIR)/run_tests-test-condvar.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-condvar.c' object='test/run_tests-test-condvar.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-condvar.obj `if test -f 'test/test-condvar.c'; then $(CYGPATH_W) 'test/test-condvar.c'; else $(CYGPATH_W) '$(srcdir)/test/test-condvar.c'; fi`
test/run_tests-test-connect-unspecified.o: test/test-connect-unspecified.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-connect-unspecified.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-connect-unspecified.Tpo -c -o test/run_tests-test-connect-unspecified.o `test -f 'test/test-connect-unspecified.c' || echo '$(srcdir)/'`test/test-connect-unspecified.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-connect-unspecified.Tpo test/$(DEPDIR)/run_tests-test-connect-unspecified.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-connect-unspecified.c' object='test/run_tests-test-connect-unspecified.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-connect-unspecified.o `test -f 'test/test-connect-unspecified.c' || echo '$(srcdir)/'`test/test-connect-unspecified.c
test/run_tests-test-connect-unspecified.obj: test/test-connect-unspecified.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-connect-unspecified.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-connect-unspecified.Tpo -c -o test/run_tests-test-connect-unspecified.obj `if test -f 'test/test-connect-unspecified.c'; then $(CYGPATH_W) 'test/test-connect-unspecified.c'; else $(CYGPATH_W) '$(srcdir)/test/test-connect-unspecified.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-connect-unspecified.Tpo test/$(DEPDIR)/run_tests-test-connect-unspecified.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-connect-unspecified.c' object='test/run_tests-test-connect-unspecified.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-connect-unspecified.obj `if test -f 'test/test-connect-unspecified.c'; then $(CYGPATH_W) 'test/test-connect-unspecified.c'; else $(CYGPATH_W) '$(srcdir)/test/test-connect-unspecified.c'; fi`
test/run_tests-test-connection-fail.o: test/test-connection-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-connection-fail.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-connection-fail.Tpo -c -o test/run_tests-test-connection-fail.o `test -f 'test/test-connection-fail.c' || echo '$(srcdir)/'`test/test-connection-fail.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-connection-fail.Tpo test/$(DEPDIR)/run_tests-test-connection-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-connection-fail.c' object='test/run_tests-test-connection-fail.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-connection-fail.o `test -f 'test/test-connection-fail.c' || echo '$(srcdir)/'`test/test-connection-fail.c
test/run_tests-test-connection-fail.obj: test/test-connection-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-connection-fail.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-connection-fail.Tpo -c -o test/run_tests-test-connection-fail.obj `if test -f 'test/test-connection-fail.c'; then $(CYGPATH_W) 'test/test-connection-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-connection-fail.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-connection-fail.Tpo test/$(DEPDIR)/run_tests-test-connection-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-connection-fail.c' object='test/run_tests-test-connection-fail.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-connection-fail.obj `if test -f 'test/test-connection-fail.c'; then $(CYGPATH_W) 'test/test-connection-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-connection-fail.c'; fi`
test/run_tests-test-cwd-and-chdir.o: test/test-cwd-and-chdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-cwd-and-chdir.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Tpo -c -o test/run_tests-test-cwd-and-chdir.o `test -f 'test/test-cwd-and-chdir.c' || echo '$(srcdir)/'`test/test-cwd-and-chdir.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Tpo test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-cwd-and-chdir.c' object='test/run_tests-test-cwd-and-chdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-cwd-and-chdir.o `test -f 'test/test-cwd-and-chdir.c' || echo '$(srcdir)/'`test/test-cwd-and-chdir.c
test/run_tests-test-cwd-and-chdir.obj: test/test-cwd-and-chdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-cwd-and-chdir.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Tpo -c -o test/run_tests-test-cwd-and-chdir.obj `if test -f 'test/test-cwd-and-chdir.c'; then $(CYGPATH_W) 'test/test-cwd-and-chdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-cwd-and-chdir.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Tpo test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-cwd-and-chdir.c' object='test/run_tests-test-cwd-and-chdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-cwd-and-chdir.obj `if test -f 'test/test-cwd-and-chdir.c'; then $(CYGPATH_W) 'test/test-cwd-and-chdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-cwd-and-chdir.c'; fi`
test/run_tests-test-default-loop-close.o: test/test-default-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-default-loop-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-default-loop-close.Tpo -c -o test/run_tests-test-default-loop-close.o `test -f 'test/test-default-loop-close.c' || echo '$(srcdir)/'`test/test-default-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-default-loop-close.Tpo test/$(DEPDIR)/run_tests-test-default-loop-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-default-loop-close.c' object='test/run_tests-test-default-loop-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-default-loop-close.o `test -f 'test/test-default-loop-close.c' || echo '$(srcdir)/'`test/test-default-loop-close.c
test/run_tests-test-default-loop-close.obj: test/test-default-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-default-loop-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-default-loop-close.Tpo -c -o test/run_tests-test-default-loop-close.obj `if test -f 'test/test-default-loop-close.c'; then $(CYGPATH_W) 'test/test-default-loop-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-default-loop-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-default-loop-close.Tpo test/$(DEPDIR)/run_tests-test-default-loop-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-default-loop-close.c' object='test/run_tests-test-default-loop-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-default-loop-close.obj `if test -f 'test/test-default-loop-close.c'; then $(CYGPATH_W) 'test/test-default-loop-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-default-loop-close.c'; fi`
test/run_tests-test-delayed-accept.o: test/test-delayed-accept.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-delayed-accept.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-delayed-accept.Tpo -c -o test/run_tests-test-delayed-accept.o `test -f 'test/test-delayed-accept.c' || echo '$(srcdir)/'`test/test-delayed-accept.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-delayed-accept.Tpo test/$(DEPDIR)/run_tests-test-delayed-accept.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-delayed-accept.c' object='test/run_tests-test-delayed-accept.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-delayed-accept.o `test -f 'test/test-delayed-accept.c' || echo '$(srcdir)/'`test/test-delayed-accept.c
test/run_tests-test-delayed-accept.obj: test/test-delayed-accept.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-delayed-accept.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-delayed-accept.Tpo -c -o test/run_tests-test-delayed-accept.obj `if test -f 'test/test-delayed-accept.c'; then $(CYGPATH_W) 'test/test-delayed-accept.c'; else $(CYGPATH_W) '$(srcdir)/test/test-delayed-accept.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-delayed-accept.Tpo test/$(DEPDIR)/run_tests-test-delayed-accept.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-delayed-accept.c' object='test/run_tests-test-delayed-accept.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-delayed-accept.obj `if test -f 'test/test-delayed-accept.c'; then $(CYGPATH_W) 'test/test-delayed-accept.c'; else $(CYGPATH_W) '$(srcdir)/test/test-delayed-accept.c'; fi`
test/run_tests-test-dlerror.o: test/test-dlerror.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-dlerror.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-dlerror.Tpo -c -o test/run_tests-test-dlerror.o `test -f 'test/test-dlerror.c' || echo '$(srcdir)/'`test/test-dlerror.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-dlerror.Tpo test/$(DEPDIR)/run_tests-test-dlerror.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-dlerror.c' object='test/run_tests-test-dlerror.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-dlerror.o `test -f 'test/test-dlerror.c' || echo '$(srcdir)/'`test/test-dlerror.c
test/run_tests-test-dlerror.obj: test/test-dlerror.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-dlerror.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-dlerror.Tpo -c -o test/run_tests-test-dlerror.obj `if test -f 'test/test-dlerror.c'; then $(CYGPATH_W) 'test/test-dlerror.c'; else $(CYGPATH_W) '$(srcdir)/test/test-dlerror.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-dlerror.Tpo test/$(DEPDIR)/run_tests-test-dlerror.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-dlerror.c' object='test/run_tests-test-dlerror.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-dlerror.obj `if test -f 'test/test-dlerror.c'; then $(CYGPATH_W) 'test/test-dlerror.c'; else $(CYGPATH_W) '$(srcdir)/test/test-dlerror.c'; fi`
test/run_tests-test-eintr-handling.o: test/test-eintr-handling.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-eintr-handling.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-eintr-handling.Tpo -c -o test/run_tests-test-eintr-handling.o `test -f 'test/test-eintr-handling.c' || echo '$(srcdir)/'`test/test-eintr-handling.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-eintr-handling.Tpo test/$(DEPDIR)/run_tests-test-eintr-handling.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-eintr-handling.c' object='test/run_tests-test-eintr-handling.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-eintr-handling.o `test -f 'test/test-eintr-handling.c' || echo '$(srcdir)/'`test/test-eintr-handling.c
test/run_tests-test-eintr-handling.obj: test/test-eintr-handling.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-eintr-handling.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-eintr-handling.Tpo -c -o test/run_tests-test-eintr-handling.obj `if test -f 'test/test-eintr-handling.c'; then $(CYGPATH_W) 'test/test-eintr-handling.c'; else $(CYGPATH_W) '$(srcdir)/test/test-eintr-handling.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-eintr-handling.Tpo test/$(DEPDIR)/run_tests-test-eintr-handling.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-eintr-handling.c' object='test/run_tests-test-eintr-handling.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-eintr-handling.obj `if test -f 'test/test-eintr-handling.c'; then $(CYGPATH_W) 'test/test-eintr-handling.c'; else $(CYGPATH_W) '$(srcdir)/test/test-eintr-handling.c'; fi`
test/run_tests-test-embed.o: test/test-embed.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-embed.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-embed.Tpo -c -o test/run_tests-test-embed.o `test -f 'test/test-embed.c' || echo '$(srcdir)/'`test/test-embed.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-embed.Tpo test/$(DEPDIR)/run_tests-test-embed.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-embed.c' object='test/run_tests-test-embed.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-embed.o `test -f 'test/test-embed.c' || echo '$(srcdir)/'`test/test-embed.c
test/run_tests-test-embed.obj: test/test-embed.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-embed.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-embed.Tpo -c -o test/run_tests-test-embed.obj `if test -f 'test/test-embed.c'; then $(CYGPATH_W) 'test/test-embed.c'; else $(CYGPATH_W) '$(srcdir)/test/test-embed.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-embed.Tpo test/$(DEPDIR)/run_tests-test-embed.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-embed.c' object='test/run_tests-test-embed.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-embed.obj `if test -f 'test/test-embed.c'; then $(CYGPATH_W) 'test/test-embed.c'; else $(CYGPATH_W) '$(srcdir)/test/test-embed.c'; fi`
test/run_tests-test-emfile.o: test/test-emfile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-emfile.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-emfile.Tpo -c -o test/run_tests-test-emfile.o `test -f 'test/test-emfile.c' || echo '$(srcdir)/'`test/test-emfile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-emfile.Tpo test/$(DEPDIR)/run_tests-test-emfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-emfile.c' object='test/run_tests-test-emfile.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-emfile.o `test -f 'test/test-emfile.c' || echo '$(srcdir)/'`test/test-emfile.c
test/run_tests-test-emfile.obj: test/test-emfile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-emfile.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-emfile.Tpo -c -o test/run_tests-test-emfile.obj `if test -f 'test/test-emfile.c'; then $(CYGPATH_W) 'test/test-emfile.c'; else $(CYGPATH_W) '$(srcdir)/test/test-emfile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-emfile.Tpo test/$(DEPDIR)/run_tests-test-emfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-emfile.c' object='test/run_tests-test-emfile.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-emfile.obj `if test -f 'test/test-emfile.c'; then $(CYGPATH_W) 'test/test-emfile.c'; else $(CYGPATH_W) '$(srcdir)/test/test-emfile.c'; fi`
test/run_tests-test-env-vars.o: test/test-env-vars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-env-vars.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-env-vars.Tpo -c -o test/run_tests-test-env-vars.o `test -f 'test/test-env-vars.c' || echo '$(srcdir)/'`test/test-env-vars.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-env-vars.Tpo test/$(DEPDIR)/run_tests-test-env-vars.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-env-vars.c' object='test/run_tests-test-env-vars.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-env-vars.o `test -f 'test/test-env-vars.c' || echo '$(srcdir)/'`test/test-env-vars.c
test/run_tests-test-env-vars.obj: test/test-env-vars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-env-vars.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-env-vars.Tpo -c -o test/run_tests-test-env-vars.obj `if test -f 'test/test-env-vars.c'; then $(CYGPATH_W) 'test/test-env-vars.c'; else $(CYGPATH_W) '$(srcdir)/test/test-env-vars.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-env-vars.Tpo test/$(DEPDIR)/run_tests-test-env-vars.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-env-vars.c' object='test/run_tests-test-env-vars.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-env-vars.obj `if test -f 'test/test-env-vars.c'; then $(CYGPATH_W) 'test/test-env-vars.c'; else $(CYGPATH_W) '$(srcdir)/test/test-env-vars.c'; fi`
test/run_tests-test-error.o: test/test-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-error.Tpo -c -o test/run_tests-test-error.o `test -f 'test/test-error.c' || echo '$(srcdir)/'`test/test-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-error.Tpo test/$(DEPDIR)/run_tests-test-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-error.c' object='test/run_tests-test-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-error.o `test -f 'test/test-error.c' || echo '$(srcdir)/'`test/test-error.c
test/run_tests-test-error.obj: test/test-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-error.Tpo -c -o test/run_tests-test-error.obj `if test -f 'test/test-error.c'; then $(CYGPATH_W) 'test/test-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-error.Tpo test/$(DEPDIR)/run_tests-test-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-error.c' object='test/run_tests-test-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-error.obj `if test -f 'test/test-error.c'; then $(CYGPATH_W) 'test/test-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-error.c'; fi`
test/run_tests-test-fail-always.o: test/test-fail-always.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fail-always.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fail-always.Tpo -c -o test/run_tests-test-fail-always.o `test -f 'test/test-fail-always.c' || echo '$(srcdir)/'`test/test-fail-always.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fail-always.Tpo test/$(DEPDIR)/run_tests-test-fail-always.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fail-always.c' object='test/run_tests-test-fail-always.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fail-always.o `test -f 'test/test-fail-always.c' || echo '$(srcdir)/'`test/test-fail-always.c
test/run_tests-test-fail-always.obj: test/test-fail-always.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fail-always.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fail-always.Tpo -c -o test/run_tests-test-fail-always.obj `if test -f 'test/test-fail-always.c'; then $(CYGPATH_W) 'test/test-fail-always.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fail-always.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fail-always.Tpo test/$(DEPDIR)/run_tests-test-fail-always.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fail-always.c' object='test/run_tests-test-fail-always.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fail-always.obj `if test -f 'test/test-fail-always.c'; then $(CYGPATH_W) 'test/test-fail-always.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fail-always.c'; fi`
test/run_tests-test-fs-copyfile.o: test/test-fs-copyfile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-copyfile.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-copyfile.Tpo -c -o test/run_tests-test-fs-copyfile.o `test -f 'test/test-fs-copyfile.c' || echo '$(srcdir)/'`test/test-fs-copyfile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-copyfile.Tpo test/$(DEPDIR)/run_tests-test-fs-copyfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-copyfile.c' object='test/run_tests-test-fs-copyfile.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-copyfile.o `test -f 'test/test-fs-copyfile.c' || echo '$(srcdir)/'`test/test-fs-copyfile.c
test/run_tests-test-fs-copyfile.obj: test/test-fs-copyfile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-copyfile.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-copyfile.Tpo -c -o test/run_tests-test-fs-copyfile.obj `if test -f 'test/test-fs-copyfile.c'; then $(CYGPATH_W) 'test/test-fs-copyfile.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-copyfile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-copyfile.Tpo test/$(DEPDIR)/run_tests-test-fs-copyfile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-copyfile.c' object='test/run_tests-test-fs-copyfile.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-copyfile.obj `if test -f 'test/test-fs-copyfile.c'; then $(CYGPATH_W) 'test/test-fs-copyfile.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-copyfile.c'; fi`
test/run_tests-test-fs-event.o: test/test-fs-event.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-event.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-event.Tpo -c -o test/run_tests-test-fs-event.o `test -f 'test/test-fs-event.c' || echo '$(srcdir)/'`test/test-fs-event.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-event.Tpo test/$(DEPDIR)/run_tests-test-fs-event.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-event.c' object='test/run_tests-test-fs-event.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-event.o `test -f 'test/test-fs-event.c' || echo '$(srcdir)/'`test/test-fs-event.c
test/run_tests-test-fs-event.obj: test/test-fs-event.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-event.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-event.Tpo -c -o test/run_tests-test-fs-event.obj `if test -f 'test/test-fs-event.c'; then $(CYGPATH_W) 'test/test-fs-event.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-event.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-event.Tpo test/$(DEPDIR)/run_tests-test-fs-event.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-event.c' object='test/run_tests-test-fs-event.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-event.obj `if test -f 'test/test-fs-event.c'; then $(CYGPATH_W) 'test/test-fs-event.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-event.c'; fi`
test/run_tests-test-fs-poll.o: test/test-fs-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-poll.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-poll.Tpo -c -o test/run_tests-test-fs-poll.o `test -f 'test/test-fs-poll.c' || echo '$(srcdir)/'`test/test-fs-poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-poll.Tpo test/$(DEPDIR)/run_tests-test-fs-poll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-poll.c' object='test/run_tests-test-fs-poll.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-poll.o `test -f 'test/test-fs-poll.c' || echo '$(srcdir)/'`test/test-fs-poll.c
test/run_tests-test-fs-poll.obj: test/test-fs-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-poll.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-poll.Tpo -c -o test/run_tests-test-fs-poll.obj `if test -f 'test/test-fs-poll.c'; then $(CYGPATH_W) 'test/test-fs-poll.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-poll.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-poll.Tpo test/$(DEPDIR)/run_tests-test-fs-poll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-poll.c' object='test/run_tests-test-fs-poll.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-poll.obj `if test -f 'test/test-fs-poll.c'; then $(CYGPATH_W) 'test/test-fs-poll.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-poll.c'; fi`
test/run_tests-test-fs.o: test/test-fs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs.Tpo -c -o test/run_tests-test-fs.o `test -f 'test/test-fs.c' || echo '$(srcdir)/'`test/test-fs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs.Tpo test/$(DEPDIR)/run_tests-test-fs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs.c' object='test/run_tests-test-fs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs.o `test -f 'test/test-fs.c' || echo '$(srcdir)/'`test/test-fs.c
test/run_tests-test-fs.obj: test/test-fs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs.Tpo -c -o test/run_tests-test-fs.obj `if test -f 'test/test-fs.c'; then $(CYGPATH_W) 'test/test-fs.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs.Tpo test/$(DEPDIR)/run_tests-test-fs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs.c' object='test/run_tests-test-fs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs.obj `if test -f 'test/test-fs.c'; then $(CYGPATH_W) 'test/test-fs.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs.c'; fi`
test/run_tests-test-fs-readdir.o: test/test-fs-readdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-readdir.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-readdir.Tpo -c -o test/run_tests-test-fs-readdir.o `test -f 'test/test-fs-readdir.c' || echo '$(srcdir)/'`test/test-fs-readdir.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-readdir.Tpo test/$(DEPDIR)/run_tests-test-fs-readdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-readdir.c' object='test/run_tests-test-fs-readdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-readdir.o `test -f 'test/test-fs-readdir.c' || echo '$(srcdir)/'`test/test-fs-readdir.c
test/run_tests-test-fs-readdir.obj: test/test-fs-readdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-readdir.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-readdir.Tpo -c -o test/run_tests-test-fs-readdir.obj `if test -f 'test/test-fs-readdir.c'; then $(CYGPATH_W) 'test/test-fs-readdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-readdir.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-readdir.Tpo test/$(DEPDIR)/run_tests-test-fs-readdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-readdir.c' object='test/run_tests-test-fs-readdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-readdir.obj `if test -f 'test/test-fs-readdir.c'; then $(CYGPATH_W) 'test/test-fs-readdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-readdir.c'; fi`
test/run_tests-test-fs-fd-hash.o: test/test-fs-fd-hash.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-fd-hash.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-fd-hash.Tpo -c -o test/run_tests-test-fs-fd-hash.o `test -f 'test/test-fs-fd-hash.c' || echo '$(srcdir)/'`test/test-fs-fd-hash.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-fd-hash.Tpo test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-fd-hash.c' object='test/run_tests-test-fs-fd-hash.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-fd-hash.o `test -f 'test/test-fs-fd-hash.c' || echo '$(srcdir)/'`test/test-fs-fd-hash.c
test/run_tests-test-fs-fd-hash.obj: test/test-fs-fd-hash.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-fd-hash.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-fd-hash.Tpo -c -o test/run_tests-test-fs-fd-hash.obj `if test -f 'test/test-fs-fd-hash.c'; then $(CYGPATH_W) 'test/test-fs-fd-hash.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-fd-hash.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-fd-hash.Tpo test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-fd-hash.c' object='test/run_tests-test-fs-fd-hash.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-fd-hash.obj `if test -f 'test/test-fs-fd-hash.c'; then $(CYGPATH_W) 'test/test-fs-fd-hash.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-fd-hash.c'; fi`
test/run_tests-test-fs-open-flags.o: test/test-fs-open-flags.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-open-flags.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-open-flags.Tpo -c -o test/run_tests-test-fs-open-flags.o `test -f 'test/test-fs-open-flags.c' || echo '$(srcdir)/'`test/test-fs-open-flags.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-open-flags.Tpo test/$(DEPDIR)/run_tests-test-fs-open-flags.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-open-flags.c' object='test/run_tests-test-fs-open-flags.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-open-flags.o `test -f 'test/test-fs-open-flags.c' || echo '$(srcdir)/'`test/test-fs-open-flags.c
test/run_tests-test-fs-open-flags.obj: test/test-fs-open-flags.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fs-open-flags.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fs-open-flags.Tpo -c -o test/run_tests-test-fs-open-flags.obj `if test -f 'test/test-fs-open-flags.c'; then $(CYGPATH_W) 'test/test-fs-open-flags.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-open-flags.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fs-open-flags.Tpo test/$(DEPDIR)/run_tests-test-fs-open-flags.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fs-open-flags.c' object='test/run_tests-test-fs-open-flags.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fs-open-flags.obj `if test -f 'test/test-fs-open-flags.c'; then $(CYGPATH_W) 'test/test-fs-open-flags.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fs-open-flags.c'; fi`
test/run_tests-test-fork.o: test/test-fork.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fork.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-fork.Tpo -c -o test/run_tests-test-fork.o `test -f 'test/test-fork.c' || echo '$(srcdir)/'`test/test-fork.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fork.Tpo test/$(DEPDIR)/run_tests-test-fork.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fork.c' object='test/run_tests-test-fork.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fork.o `test -f 'test/test-fork.c' || echo '$(srcdir)/'`test/test-fork.c
test/run_tests-test-fork.obj: test/test-fork.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-fork.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-fork.Tpo -c -o test/run_tests-test-fork.obj `if test -f 'test/test-fork.c'; then $(CYGPATH_W) 'test/test-fork.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fork.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-fork.Tpo test/$(DEPDIR)/run_tests-test-fork.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-fork.c' object='test/run_tests-test-fork.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-fork.obj `if test -f 'test/test-fork.c'; then $(CYGPATH_W) 'test/test-fork.c'; else $(CYGPATH_W) '$(srcdir)/test/test-fork.c'; fi`
test/run_tests-test-getters-setters.o: test/test-getters-setters.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getters-setters.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-getters-setters.Tpo -c -o test/run_tests-test-getters-setters.o `test -f 'test/test-getters-setters.c' || echo '$(srcdir)/'`test/test-getters-setters.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getters-setters.Tpo test/$(DEPDIR)/run_tests-test-getters-setters.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getters-setters.c' object='test/run_tests-test-getters-setters.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getters-setters.o `test -f 'test/test-getters-setters.c' || echo '$(srcdir)/'`test/test-getters-setters.c
test/run_tests-test-getters-setters.obj: test/test-getters-setters.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getters-setters.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-getters-setters.Tpo -c -o test/run_tests-test-getters-setters.obj `if test -f 'test/test-getters-setters.c'; then $(CYGPATH_W) 'test/test-getters-setters.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getters-setters.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getters-setters.Tpo test/$(DEPDIR)/run_tests-test-getters-setters.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getters-setters.c' object='test/run_tests-test-getters-setters.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getters-setters.obj `if test -f 'test/test-getters-setters.c'; then $(CYGPATH_W) 'test/test-getters-setters.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getters-setters.c'; fi`
test/run_tests-test-get-currentexe.o: test/test-get-currentexe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-currentexe.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-currentexe.Tpo -c -o test/run_tests-test-get-currentexe.o `test -f 'test/test-get-currentexe.c' || echo '$(srcdir)/'`test/test-get-currentexe.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-currentexe.Tpo test/$(DEPDIR)/run_tests-test-get-currentexe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-currentexe.c' object='test/run_tests-test-get-currentexe.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-currentexe.o `test -f 'test/test-get-currentexe.c' || echo '$(srcdir)/'`test/test-get-currentexe.c
test/run_tests-test-get-currentexe.obj: test/test-get-currentexe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-currentexe.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-currentexe.Tpo -c -o test/run_tests-test-get-currentexe.obj `if test -f 'test/test-get-currentexe.c'; then $(CYGPATH_W) 'test/test-get-currentexe.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-currentexe.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-currentexe.Tpo test/$(DEPDIR)/run_tests-test-get-currentexe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-currentexe.c' object='test/run_tests-test-get-currentexe.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-currentexe.obj `if test -f 'test/test-get-currentexe.c'; then $(CYGPATH_W) 'test/test-get-currentexe.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-currentexe.c'; fi`
test/run_tests-test-get-loadavg.o: test/test-get-loadavg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-loadavg.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-loadavg.Tpo -c -o test/run_tests-test-get-loadavg.o `test -f 'test/test-get-loadavg.c' || echo '$(srcdir)/'`test/test-get-loadavg.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-loadavg.Tpo test/$(DEPDIR)/run_tests-test-get-loadavg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-loadavg.c' object='test/run_tests-test-get-loadavg.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-loadavg.o `test -f 'test/test-get-loadavg.c' || echo '$(srcdir)/'`test/test-get-loadavg.c
test/run_tests-test-get-loadavg.obj: test/test-get-loadavg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-loadavg.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-loadavg.Tpo -c -o test/run_tests-test-get-loadavg.obj `if test -f 'test/test-get-loadavg.c'; then $(CYGPATH_W) 'test/test-get-loadavg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-loadavg.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-loadavg.Tpo test/$(DEPDIR)/run_tests-test-get-loadavg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-loadavg.c' object='test/run_tests-test-get-loadavg.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-loadavg.obj `if test -f 'test/test-get-loadavg.c'; then $(CYGPATH_W) 'test/test-get-loadavg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-loadavg.c'; fi`
test/run_tests-test-get-memory.o: test/test-get-memory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-memory.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-memory.Tpo -c -o test/run_tests-test-get-memory.o `test -f 'test/test-get-memory.c' || echo '$(srcdir)/'`test/test-get-memory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-memory.Tpo test/$(DEPDIR)/run_tests-test-get-memory.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-memory.c' object='test/run_tests-test-get-memory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-memory.o `test -f 'test/test-get-memory.c' || echo '$(srcdir)/'`test/test-get-memory.c
test/run_tests-test-get-memory.obj: test/test-get-memory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-memory.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-memory.Tpo -c -o test/run_tests-test-get-memory.obj `if test -f 'test/test-get-memory.c'; then $(CYGPATH_W) 'test/test-get-memory.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-memory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-memory.Tpo test/$(DEPDIR)/run_tests-test-get-memory.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-memory.c' object='test/run_tests-test-get-memory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-memory.obj `if test -f 'test/test-get-memory.c'; then $(CYGPATH_W) 'test/test-get-memory.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-memory.c'; fi`
test/run_tests-test-get-passwd.o: test/test-get-passwd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-passwd.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-passwd.Tpo -c -o test/run_tests-test-get-passwd.o `test -f 'test/test-get-passwd.c' || echo '$(srcdir)/'`test/test-get-passwd.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-passwd.Tpo test/$(DEPDIR)/run_tests-test-get-passwd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-passwd.c' object='test/run_tests-test-get-passwd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-passwd.o `test -f 'test/test-get-passwd.c' || echo '$(srcdir)/'`test/test-get-passwd.c
test/run_tests-test-get-passwd.obj: test/test-get-passwd.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-get-passwd.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-get-passwd.Tpo -c -o test/run_tests-test-get-passwd.obj `if test -f 'test/test-get-passwd.c'; then $(CYGPATH_W) 'test/test-get-passwd.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-passwd.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-get-passwd.Tpo test/$(DEPDIR)/run_tests-test-get-passwd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-get-passwd.c' object='test/run_tests-test-get-passwd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-get-passwd.obj `if test -f 'test/test-get-passwd.c'; then $(CYGPATH_W) 'test/test-get-passwd.c'; else $(CYGPATH_W) '$(srcdir)/test/test-get-passwd.c'; fi`
test/run_tests-test-getaddrinfo.o: test/test-getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getaddrinfo.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-getaddrinfo.Tpo -c -o test/run_tests-test-getaddrinfo.o `test -f 'test/test-getaddrinfo.c' || echo '$(srcdir)/'`test/test-getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getaddrinfo.Tpo test/$(DEPDIR)/run_tests-test-getaddrinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getaddrinfo.c' object='test/run_tests-test-getaddrinfo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getaddrinfo.o `test -f 'test/test-getaddrinfo.c' || echo '$(srcdir)/'`test/test-getaddrinfo.c
test/run_tests-test-getaddrinfo.obj: test/test-getaddrinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getaddrinfo.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-getaddrinfo.Tpo -c -o test/run_tests-test-getaddrinfo.obj `if test -f 'test/test-getaddrinfo.c'; then $(CYGPATH_W) 'test/test-getaddrinfo.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getaddrinfo.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getaddrinfo.Tpo test/$(DEPDIR)/run_tests-test-getaddrinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getaddrinfo.c' object='test/run_tests-test-getaddrinfo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getaddrinfo.obj `if test -f 'test/test-getaddrinfo.c'; then $(CYGPATH_W) 'test/test-getaddrinfo.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getaddrinfo.c'; fi`
test/run_tests-test-gethostname.o: test/test-gethostname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-gethostname.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-gethostname.Tpo -c -o test/run_tests-test-gethostname.o `test -f 'test/test-gethostname.c' || echo '$(srcdir)/'`test/test-gethostname.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-gethostname.Tpo test/$(DEPDIR)/run_tests-test-gethostname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-gethostname.c' object='test/run_tests-test-gethostname.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-gethostname.o `test -f 'test/test-gethostname.c' || echo '$(srcdir)/'`test/test-gethostname.c
test/run_tests-test-gethostname.obj: test/test-gethostname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-gethostname.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-gethostname.Tpo -c -o test/run_tests-test-gethostname.obj `if test -f 'test/test-gethostname.c'; then $(CYGPATH_W) 'test/test-gethostname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-gethostname.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-gethostname.Tpo test/$(DEPDIR)/run_tests-test-gethostname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-gethostname.c' object='test/run_tests-test-gethostname.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-gethostname.obj `if test -f 'test/test-gethostname.c'; then $(CYGPATH_W) 'test/test-gethostname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-gethostname.c'; fi`
test/run_tests-test-getnameinfo.o: test/test-getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getnameinfo.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-getnameinfo.Tpo -c -o test/run_tests-test-getnameinfo.o `test -f 'test/test-getnameinfo.c' || echo '$(srcdir)/'`test/test-getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getnameinfo.Tpo test/$(DEPDIR)/run_tests-test-getnameinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getnameinfo.c' object='test/run_tests-test-getnameinfo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getnameinfo.o `test -f 'test/test-getnameinfo.c' || echo '$(srcdir)/'`test/test-getnameinfo.c
test/run_tests-test-getnameinfo.obj: test/test-getnameinfo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getnameinfo.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-getnameinfo.Tpo -c -o test/run_tests-test-getnameinfo.obj `if test -f 'test/test-getnameinfo.c'; then $(CYGPATH_W) 'test/test-getnameinfo.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getnameinfo.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getnameinfo.Tpo test/$(DEPDIR)/run_tests-test-getnameinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getnameinfo.c' object='test/run_tests-test-getnameinfo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getnameinfo.obj `if test -f 'test/test-getnameinfo.c'; then $(CYGPATH_W) 'test/test-getnameinfo.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getnameinfo.c'; fi`
test/run_tests-test-getsockname.o: test/test-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getsockname.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-getsockname.Tpo -c -o test/run_tests-test-getsockname.o `test -f 'test/test-getsockname.c' || echo '$(srcdir)/'`test/test-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getsockname.Tpo test/$(DEPDIR)/run_tests-test-getsockname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getsockname.c' object='test/run_tests-test-getsockname.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getsockname.o `test -f 'test/test-getsockname.c' || echo '$(srcdir)/'`test/test-getsockname.c
test/run_tests-test-getsockname.obj: test/test-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-getsockname.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-getsockname.Tpo -c -o test/run_tests-test-getsockname.obj `if test -f 'test/test-getsockname.c'; then $(CYGPATH_W) 'test/test-getsockname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getsockname.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-getsockname.Tpo test/$(DEPDIR)/run_tests-test-getsockname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-getsockname.c' object='test/run_tests-test-getsockname.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-getsockname.obj `if test -f 'test/test-getsockname.c'; then $(CYGPATH_W) 'test/test-getsockname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-getsockname.c'; fi`
test/run_tests-test-gettimeofday.o: test/test-gettimeofday.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-gettimeofday.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-gettimeofday.Tpo -c -o test/run_tests-test-gettimeofday.o `test -f 'test/test-gettimeofday.c' || echo '$(srcdir)/'`test/test-gettimeofday.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-gettimeofday.Tpo test/$(DEPDIR)/run_tests-test-gettimeofday.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-gettimeofday.c' object='test/run_tests-test-gettimeofday.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-gettimeofday.o `test -f 'test/test-gettimeofday.c' || echo '$(srcdir)/'`test/test-gettimeofday.c
test/run_tests-test-gettimeofday.obj: test/test-gettimeofday.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-gettimeofday.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-gettimeofday.Tpo -c -o test/run_tests-test-gettimeofday.obj `if test -f 'test/test-gettimeofday.c'; then $(CYGPATH_W) 'test/test-gettimeofday.c'; else $(CYGPATH_W) '$(srcdir)/test/test-gettimeofday.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-gettimeofday.Tpo test/$(DEPDIR)/run_tests-test-gettimeofday.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-gettimeofday.c' object='test/run_tests-test-gettimeofday.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-gettimeofday.obj `if test -f 'test/test-gettimeofday.c'; then $(CYGPATH_W) 'test/test-gettimeofday.c'; else $(CYGPATH_W) '$(srcdir)/test/test-gettimeofday.c'; fi`
test/run_tests-test-handle-fileno.o: test/test-handle-fileno.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-handle-fileno.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-handle-fileno.Tpo -c -o test/run_tests-test-handle-fileno.o `test -f 'test/test-handle-fileno.c' || echo '$(srcdir)/'`test/test-handle-fileno.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-handle-fileno.Tpo test/$(DEPDIR)/run_tests-test-handle-fileno.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-handle-fileno.c' object='test/run_tests-test-handle-fileno.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-handle-fileno.o `test -f 'test/test-handle-fileno.c' || echo '$(srcdir)/'`test/test-handle-fileno.c
test/run_tests-test-handle-fileno.obj: test/test-handle-fileno.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-handle-fileno.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-handle-fileno.Tpo -c -o test/run_tests-test-handle-fileno.obj `if test -f 'test/test-handle-fileno.c'; then $(CYGPATH_W) 'test/test-handle-fileno.c'; else $(CYGPATH_W) '$(srcdir)/test/test-handle-fileno.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-handle-fileno.Tpo test/$(DEPDIR)/run_tests-test-handle-fileno.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-handle-fileno.c' object='test/run_tests-test-handle-fileno.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-handle-fileno.obj `if test -f 'test/test-handle-fileno.c'; then $(CYGPATH_W) 'test/test-handle-fileno.c'; else $(CYGPATH_W) '$(srcdir)/test/test-handle-fileno.c'; fi`
test/run_tests-test-homedir.o: test/test-homedir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-homedir.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-homedir.Tpo -c -o test/run_tests-test-homedir.o `test -f 'test/test-homedir.c' || echo '$(srcdir)/'`test/test-homedir.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-homedir.Tpo test/$(DEPDIR)/run_tests-test-homedir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-homedir.c' object='test/run_tests-test-homedir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-homedir.o `test -f 'test/test-homedir.c' || echo '$(srcdir)/'`test/test-homedir.c
test/run_tests-test-homedir.obj: test/test-homedir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-homedir.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-homedir.Tpo -c -o test/run_tests-test-homedir.obj `if test -f 'test/test-homedir.c'; then $(CYGPATH_W) 'test/test-homedir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-homedir.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-homedir.Tpo test/$(DEPDIR)/run_tests-test-homedir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-homedir.c' object='test/run_tests-test-homedir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-homedir.obj `if test -f 'test/test-homedir.c'; then $(CYGPATH_W) 'test/test-homedir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-homedir.c'; fi`
test/run_tests-test-hrtime.o: test/test-hrtime.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-hrtime.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-hrtime.Tpo -c -o test/run_tests-test-hrtime.o `test -f 'test/test-hrtime.c' || echo '$(srcdir)/'`test/test-hrtime.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-hrtime.Tpo test/$(DEPDIR)/run_tests-test-hrtime.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-hrtime.c' object='test/run_tests-test-hrtime.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-hrtime.o `test -f 'test/test-hrtime.c' || echo '$(srcdir)/'`test/test-hrtime.c
test/run_tests-test-hrtime.obj: test/test-hrtime.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-hrtime.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-hrtime.Tpo -c -o test/run_tests-test-hrtime.obj `if test -f 'test/test-hrtime.c'; then $(CYGPATH_W) 'test/test-hrtime.c'; else $(CYGPATH_W) '$(srcdir)/test/test-hrtime.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-hrtime.Tpo test/$(DEPDIR)/run_tests-test-hrtime.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-hrtime.c' object='test/run_tests-test-hrtime.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-hrtime.obj `if test -f 'test/test-hrtime.c'; then $(CYGPATH_W) 'test/test-hrtime.c'; else $(CYGPATH_W) '$(srcdir)/test/test-hrtime.c'; fi`
test/run_tests-test-idle.o: test/test-idle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-idle.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-idle.Tpo -c -o test/run_tests-test-idle.o `test -f 'test/test-idle.c' || echo '$(srcdir)/'`test/test-idle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-idle.Tpo test/$(DEPDIR)/run_tests-test-idle.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-idle.c' object='test/run_tests-test-idle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-idle.o `test -f 'test/test-idle.c' || echo '$(srcdir)/'`test/test-idle.c
test/run_tests-test-idle.obj: test/test-idle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-idle.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-idle.Tpo -c -o test/run_tests-test-idle.obj `if test -f 'test/test-idle.c'; then $(CYGPATH_W) 'test/test-idle.c'; else $(CYGPATH_W) '$(srcdir)/test/test-idle.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-idle.Tpo test/$(DEPDIR)/run_tests-test-idle.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-idle.c' object='test/run_tests-test-idle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-idle.obj `if test -f 'test/test-idle.c'; then $(CYGPATH_W) 'test/test-idle.c'; else $(CYGPATH_W) '$(srcdir)/test/test-idle.c'; fi`
test/run_tests-test-idna.o: test/test-idna.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-idna.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-idna.Tpo -c -o test/run_tests-test-idna.o `test -f 'test/test-idna.c' || echo '$(srcdir)/'`test/test-idna.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-idna.Tpo test/$(DEPDIR)/run_tests-test-idna.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-idna.c' object='test/run_tests-test-idna.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-idna.o `test -f 'test/test-idna.c' || echo '$(srcdir)/'`test/test-idna.c
test/run_tests-test-idna.obj: test/test-idna.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-idna.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-idna.Tpo -c -o test/run_tests-test-idna.obj `if test -f 'test/test-idna.c'; then $(CYGPATH_W) 'test/test-idna.c'; else $(CYGPATH_W) '$(srcdir)/test/test-idna.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-idna.Tpo test/$(DEPDIR)/run_tests-test-idna.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-idna.c' object='test/run_tests-test-idna.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-idna.obj `if test -f 'test/test-idna.c'; then $(CYGPATH_W) 'test/test-idna.c'; else $(CYGPATH_W) '$(srcdir)/test/test-idna.c'; fi`
test/run_tests-test-ip4-addr.o: test/test-ip4-addr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip4-addr.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip4-addr.Tpo -c -o test/run_tests-test-ip4-addr.o `test -f 'test/test-ip4-addr.c' || echo '$(srcdir)/'`test/test-ip4-addr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip4-addr.Tpo test/$(DEPDIR)/run_tests-test-ip4-addr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip4-addr.c' object='test/run_tests-test-ip4-addr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip4-addr.o `test -f 'test/test-ip4-addr.c' || echo '$(srcdir)/'`test/test-ip4-addr.c
test/run_tests-test-ip4-addr.obj: test/test-ip4-addr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip4-addr.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip4-addr.Tpo -c -o test/run_tests-test-ip4-addr.obj `if test -f 'test/test-ip4-addr.c'; then $(CYGPATH_W) 'test/test-ip4-addr.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip4-addr.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip4-addr.Tpo test/$(DEPDIR)/run_tests-test-ip4-addr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip4-addr.c' object='test/run_tests-test-ip4-addr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip4-addr.obj `if test -f 'test/test-ip4-addr.c'; then $(CYGPATH_W) 'test/test-ip4-addr.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip4-addr.c'; fi`
test/run_tests-test-ip6-addr.o: test/test-ip6-addr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip6-addr.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip6-addr.Tpo -c -o test/run_tests-test-ip6-addr.o `test -f 'test/test-ip6-addr.c' || echo '$(srcdir)/'`test/test-ip6-addr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip6-addr.Tpo test/$(DEPDIR)/run_tests-test-ip6-addr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip6-addr.c' object='test/run_tests-test-ip6-addr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip6-addr.o `test -f 'test/test-ip6-addr.c' || echo '$(srcdir)/'`test/test-ip6-addr.c
test/run_tests-test-ip6-addr.obj: test/test-ip6-addr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip6-addr.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip6-addr.Tpo -c -o test/run_tests-test-ip6-addr.obj `if test -f 'test/test-ip6-addr.c'; then $(CYGPATH_W) 'test/test-ip6-addr.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip6-addr.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip6-addr.Tpo test/$(DEPDIR)/run_tests-test-ip6-addr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip6-addr.c' object='test/run_tests-test-ip6-addr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip6-addr.obj `if test -f 'test/test-ip6-addr.c'; then $(CYGPATH_W) 'test/test-ip6-addr.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip6-addr.c'; fi`
test/run_tests-test-ip-name.o: test/test-ip-name.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip-name.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip-name.Tpo -c -o test/run_tests-test-ip-name.o `test -f 'test/test-ip-name.c' || echo '$(srcdir)/'`test/test-ip-name.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip-name.Tpo test/$(DEPDIR)/run_tests-test-ip-name.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip-name.c' object='test/run_tests-test-ip-name.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip-name.o `test -f 'test/test-ip-name.c' || echo '$(srcdir)/'`test/test-ip-name.c
test/run_tests-test-ip-name.obj: test/test-ip-name.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ip-name.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ip-name.Tpo -c -o test/run_tests-test-ip-name.obj `if test -f 'test/test-ip-name.c'; then $(CYGPATH_W) 'test/test-ip-name.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip-name.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ip-name.Tpo test/$(DEPDIR)/run_tests-test-ip-name.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ip-name.c' object='test/run_tests-test-ip-name.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ip-name.obj `if test -f 'test/test-ip-name.c'; then $(CYGPATH_W) 'test/test-ip-name.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ip-name.c'; fi`
test/run_tests-test-ipc-heavy-traffic-deadlock-bug.o: test/test-ipc-heavy-traffic-deadlock-bug.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc-heavy-traffic-deadlock-bug.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Tpo -c -o test/run_tests-test-ipc-heavy-traffic-deadlock-bug.o `test -f 'test/test-ipc-heavy-traffic-deadlock-bug.c' || echo '$(srcdir)/'`test/test-ipc-heavy-traffic-deadlock-bug.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Tpo test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc-heavy-traffic-deadlock-bug.c' object='test/run_tests-test-ipc-heavy-traffic-deadlock-bug.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc-heavy-traffic-deadlock-bug.o `test -f 'test/test-ipc-heavy-traffic-deadlock-bug.c' || echo '$(srcdir)/'`test/test-ipc-heavy-traffic-deadlock-bug.c
test/run_tests-test-ipc-heavy-traffic-deadlock-bug.obj: test/test-ipc-heavy-traffic-deadlock-bug.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc-heavy-traffic-deadlock-bug.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Tpo -c -o test/run_tests-test-ipc-heavy-traffic-deadlock-bug.obj `if test -f 'test/test-ipc-heavy-traffic-deadlock-bug.c'; then $(CYGPATH_W) 'test/test-ipc-heavy-traffic-deadlock-bug.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc-heavy-traffic-deadlock-bug.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Tpo test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc-heavy-traffic-deadlock-bug.c' object='test/run_tests-test-ipc-heavy-traffic-deadlock-bug.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc-heavy-traffic-deadlock-bug.obj `if test -f 'test/test-ipc-heavy-traffic-deadlock-bug.c'; then $(CYGPATH_W) 'test/test-ipc-heavy-traffic-deadlock-bug.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc-heavy-traffic-deadlock-bug.c'; fi`
test/run_tests-test-ipc-send-recv.o: test/test-ipc-send-recv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc-send-recv.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc-send-recv.Tpo -c -o test/run_tests-test-ipc-send-recv.o `test -f 'test/test-ipc-send-recv.c' || echo '$(srcdir)/'`test/test-ipc-send-recv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc-send-recv.Tpo test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc-send-recv.c' object='test/run_tests-test-ipc-send-recv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc-send-recv.o `test -f 'test/test-ipc-send-recv.c' || echo '$(srcdir)/'`test/test-ipc-send-recv.c
test/run_tests-test-ipc-send-recv.obj: test/test-ipc-send-recv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc-send-recv.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc-send-recv.Tpo -c -o test/run_tests-test-ipc-send-recv.obj `if test -f 'test/test-ipc-send-recv.c'; then $(CYGPATH_W) 'test/test-ipc-send-recv.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc-send-recv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc-send-recv.Tpo test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc-send-recv.c' object='test/run_tests-test-ipc-send-recv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc-send-recv.obj `if test -f 'test/test-ipc-send-recv.c'; then $(CYGPATH_W) 'test/test-ipc-send-recv.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc-send-recv.c'; fi`
test/run_tests-test-ipc.o: test/test-ipc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc.Tpo -c -o test/run_tests-test-ipc.o `test -f 'test/test-ipc.c' || echo '$(srcdir)/'`test/test-ipc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc.Tpo test/$(DEPDIR)/run_tests-test-ipc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc.c' object='test/run_tests-test-ipc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc.o `test -f 'test/test-ipc.c' || echo '$(srcdir)/'`test/test-ipc.c
test/run_tests-test-ipc.obj: test/test-ipc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ipc.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ipc.Tpo -c -o test/run_tests-test-ipc.obj `if test -f 'test/test-ipc.c'; then $(CYGPATH_W) 'test/test-ipc.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ipc.Tpo test/$(DEPDIR)/run_tests-test-ipc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ipc.c' object='test/run_tests-test-ipc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ipc.obj `if test -f 'test/test-ipc.c'; then $(CYGPATH_W) 'test/test-ipc.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ipc.c'; fi`
test/run_tests-test-loop-handles.o: test/test-loop-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-handles.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-handles.Tpo -c -o test/run_tests-test-loop-handles.o `test -f 'test/test-loop-handles.c' || echo '$(srcdir)/'`test/test-loop-handles.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-handles.Tpo test/$(DEPDIR)/run_tests-test-loop-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-handles.c' object='test/run_tests-test-loop-handles.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-handles.o `test -f 'test/test-loop-handles.c' || echo '$(srcdir)/'`test/test-loop-handles.c
test/run_tests-test-loop-handles.obj: test/test-loop-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-handles.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-handles.Tpo -c -o test/run_tests-test-loop-handles.obj `if test -f 'test/test-loop-handles.c'; then $(CYGPATH_W) 'test/test-loop-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-handles.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-handles.Tpo test/$(DEPDIR)/run_tests-test-loop-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-handles.c' object='test/run_tests-test-loop-handles.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-handles.obj `if test -f 'test/test-loop-handles.c'; then $(CYGPATH_W) 'test/test-loop-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-handles.c'; fi`
test/run_tests-test-loop-alive.o: test/test-loop-alive.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-alive.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-alive.Tpo -c -o test/run_tests-test-loop-alive.o `test -f 'test/test-loop-alive.c' || echo '$(srcdir)/'`test/test-loop-alive.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-alive.Tpo test/$(DEPDIR)/run_tests-test-loop-alive.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-alive.c' object='test/run_tests-test-loop-alive.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-alive.o `test -f 'test/test-loop-alive.c' || echo '$(srcdir)/'`test/test-loop-alive.c
test/run_tests-test-loop-alive.obj: test/test-loop-alive.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-alive.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-alive.Tpo -c -o test/run_tests-test-loop-alive.obj `if test -f 'test/test-loop-alive.c'; then $(CYGPATH_W) 'test/test-loop-alive.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-alive.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-alive.Tpo test/$(DEPDIR)/run_tests-test-loop-alive.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-alive.c' object='test/run_tests-test-loop-alive.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-alive.obj `if test -f 'test/test-loop-alive.c'; then $(CYGPATH_W) 'test/test-loop-alive.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-alive.c'; fi`
test/run_tests-test-loop-close.o: test/test-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-close.Tpo -c -o test/run_tests-test-loop-close.o `test -f 'test/test-loop-close.c' || echo '$(srcdir)/'`test/test-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-close.Tpo test/$(DEPDIR)/run_tests-test-loop-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-close.c' object='test/run_tests-test-loop-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-close.o `test -f 'test/test-loop-close.c' || echo '$(srcdir)/'`test/test-loop-close.c
test/run_tests-test-loop-close.obj: test/test-loop-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-close.Tpo -c -o test/run_tests-test-loop-close.obj `if test -f 'test/test-loop-close.c'; then $(CYGPATH_W) 'test/test-loop-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-close.Tpo test/$(DEPDIR)/run_tests-test-loop-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-close.c' object='test/run_tests-test-loop-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-close.obj `if test -f 'test/test-loop-close.c'; then $(CYGPATH_W) 'test/test-loop-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-close.c'; fi`
test/run_tests-test-loop-stop.o: test/test-loop-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-stop.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-stop.Tpo -c -o test/run_tests-test-loop-stop.o `test -f 'test/test-loop-stop.c' || echo '$(srcdir)/'`test/test-loop-stop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-stop.Tpo test/$(DEPDIR)/run_tests-test-loop-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-stop.c' object='test/run_tests-test-loop-stop.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-stop.o `test -f 'test/test-loop-stop.c' || echo '$(srcdir)/'`test/test-loop-stop.c
test/run_tests-test-loop-stop.obj: test/test-loop-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-stop.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-stop.Tpo -c -o test/run_tests-test-loop-stop.obj `if test -f 'test/test-loop-stop.c'; then $(CYGPATH_W) 'test/test-loop-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-stop.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-stop.Tpo test/$(DEPDIR)/run_tests-test-loop-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-stop.c' object='test/run_tests-test-loop-stop.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-stop.obj `if test -f 'test/test-loop-stop.c'; then $(CYGPATH_W) 'test/test-loop-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-stop.c'; fi`
test/run_tests-test-loop-time.o: test/test-loop-time.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-time.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-time.Tpo -c -o test/run_tests-test-loop-time.o `test -f 'test/test-loop-time.c' || echo '$(srcdir)/'`test/test-loop-time.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-time.Tpo test/$(DEPDIR)/run_tests-test-loop-time.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-time.c' object='test/run_tests-test-loop-time.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-time.o `test -f 'test/test-loop-time.c' || echo '$(srcdir)/'`test/test-loop-time.c
test/run_tests-test-loop-time.obj: test/test-loop-time.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-time.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-time.Tpo -c -o test/run_tests-test-loop-time.obj `if test -f 'test/test-loop-time.c'; then $(CYGPATH_W) 'test/test-loop-time.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-time.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-time.Tpo test/$(DEPDIR)/run_tests-test-loop-time.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-time.c' object='test/run_tests-test-loop-time.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-time.obj `if test -f 'test/test-loop-time.c'; then $(CYGPATH_W) 'test/test-loop-time.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-time.c'; fi`
test/run_tests-test-loop-configure.o: test/test-loop-configure.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-configure.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-configure.Tpo -c -o test/run_tests-test-loop-configure.o `test -f 'test/test-loop-configure.c' || echo '$(srcdir)/'`test/test-loop-configure.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-configure.Tpo test/$(DEPDIR)/run_tests-test-loop-configure.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-configure.c' object='test/run_tests-test-loop-configure.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-configure.o `test -f 'test/test-loop-configure.c' || echo '$(srcdir)/'`test/test-loop-configure.c
test/run_tests-test-loop-configure.obj: test/test-loop-configure.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-loop-configure.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-loop-configure.Tpo -c -o test/run_tests-test-loop-configure.obj `if test -f 'test/test-loop-configure.c'; then $(CYGPATH_W) 'test/test-loop-configure.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-configure.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-loop-configure.Tpo test/$(DEPDIR)/run_tests-test-loop-configure.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-loop-configure.c' object='test/run_tests-test-loop-configure.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-loop-configure.obj `if test -f 'test/test-loop-configure.c'; then $(CYGPATH_W) 'test/test-loop-configure.c'; else $(CYGPATH_W) '$(srcdir)/test/test-loop-configure.c'; fi`
test/run_tests-test-metrics.o: test/test-metrics.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-metrics.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-metrics.Tpo -c -o test/run_tests-test-metrics.o `test -f 'test/test-metrics.c' || echo '$(srcdir)/'`test/test-metrics.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-metrics.Tpo test/$(DEPDIR)/run_tests-test-metrics.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-metrics.c' object='test/run_tests-test-metrics.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-metrics.o `test -f 'test/test-metrics.c' || echo '$(srcdir)/'`test/test-metrics.c
test/run_tests-test-metrics.obj: test/test-metrics.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-metrics.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-metrics.Tpo -c -o test/run_tests-test-metrics.obj `if test -f 'test/test-metrics.c'; then $(CYGPATH_W) 'test/test-metrics.c'; else $(CYGPATH_W) '$(srcdir)/test/test-metrics.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-metrics.Tpo test/$(DEPDIR)/run_tests-test-metrics.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-metrics.c' object='test/run_tests-test-metrics.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-metrics.obj `if test -f 'test/test-metrics.c'; then $(CYGPATH_W) 'test/test-metrics.c'; else $(CYGPATH_W) '$(srcdir)/test/test-metrics.c'; fi`
test/run_tests-test-multiple-listen.o: test/test-multiple-listen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-multiple-listen.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-multiple-listen.Tpo -c -o test/run_tests-test-multiple-listen.o `test -f 'test/test-multiple-listen.c' || echo '$(srcdir)/'`test/test-multiple-listen.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-multiple-listen.Tpo test/$(DEPDIR)/run_tests-test-multiple-listen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-multiple-listen.c' object='test/run_tests-test-multiple-listen.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-multiple-listen.o `test -f 'test/test-multiple-listen.c' || echo '$(srcdir)/'`test/test-multiple-listen.c
test/run_tests-test-multiple-listen.obj: test/test-multiple-listen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-multiple-listen.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-multiple-listen.Tpo -c -o test/run_tests-test-multiple-listen.obj `if test -f 'test/test-multiple-listen.c'; then $(CYGPATH_W) 'test/test-multiple-listen.c'; else $(CYGPATH_W) '$(srcdir)/test/test-multiple-listen.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-multiple-listen.Tpo test/$(DEPDIR)/run_tests-test-multiple-listen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-multiple-listen.c' object='test/run_tests-test-multiple-listen.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-multiple-listen.obj `if test -f 'test/test-multiple-listen.c'; then $(CYGPATH_W) 'test/test-multiple-listen.c'; else $(CYGPATH_W) '$(srcdir)/test/test-multiple-listen.c'; fi`
test/run_tests-test-mutexes.o: test/test-mutexes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-mutexes.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-mutexes.Tpo -c -o test/run_tests-test-mutexes.o `test -f 'test/test-mutexes.c' || echo '$(srcdir)/'`test/test-mutexes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-mutexes.Tpo test/$(DEPDIR)/run_tests-test-mutexes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-mutexes.c' object='test/run_tests-test-mutexes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-mutexes.o `test -f 'test/test-mutexes.c' || echo '$(srcdir)/'`test/test-mutexes.c
test/run_tests-test-mutexes.obj: test/test-mutexes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-mutexes.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-mutexes.Tpo -c -o test/run_tests-test-mutexes.obj `if test -f 'test/test-mutexes.c'; then $(CYGPATH_W) 'test/test-mutexes.c'; else $(CYGPATH_W) '$(srcdir)/test/test-mutexes.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-mutexes.Tpo test/$(DEPDIR)/run_tests-test-mutexes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-mutexes.c' object='test/run_tests-test-mutexes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-mutexes.obj `if test -f 'test/test-mutexes.c'; then $(CYGPATH_W) 'test/test-mutexes.c'; else $(CYGPATH_W) '$(srcdir)/test/test-mutexes.c'; fi`
test/run_tests-test-not-readable-nor-writable-on-read-error.o: test/test-not-readable-nor-writable-on-read-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-not-readable-nor-writable-on-read-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Tpo -c -o test/run_tests-test-not-readable-nor-writable-on-read-error.o `test -f 'test/test-not-readable-nor-writable-on-read-error.c' || echo '$(srcdir)/'`test/test-not-readable-nor-writable-on-read-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Tpo test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-not-readable-nor-writable-on-read-error.c' object='test/run_tests-test-not-readable-nor-writable-on-read-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-not-readable-nor-writable-on-read-error.o `test -f 'test/test-not-readable-nor-writable-on-read-error.c' || echo '$(srcdir)/'`test/test-not-readable-nor-writable-on-read-error.c
test/run_tests-test-not-readable-nor-writable-on-read-error.obj: test/test-not-readable-nor-writable-on-read-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-not-readable-nor-writable-on-read-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Tpo -c -o test/run_tests-test-not-readable-nor-writable-on-read-error.obj `if test -f 'test/test-not-readable-nor-writable-on-read-error.c'; then $(CYGPATH_W) 'test/test-not-readable-nor-writable-on-read-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-not-readable-nor-writable-on-read-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Tpo test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-not-readable-nor-writable-on-read-error.c' object='test/run_tests-test-not-readable-nor-writable-on-read-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-not-readable-nor-writable-on-read-error.obj `if test -f 'test/test-not-readable-nor-writable-on-read-error.c'; then $(CYGPATH_W) 'test/test-not-readable-nor-writable-on-read-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-not-readable-nor-writable-on-read-error.c'; fi`
test/run_tests-test-not-writable-after-shutdown.o: test/test-not-writable-after-shutdown.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-not-writable-after-shutdown.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Tpo -c -o test/run_tests-test-not-writable-after-shutdown.o `test -f 'test/test-not-writable-after-shutdown.c' || echo '$(srcdir)/'`test/test-not-writable-after-shutdown.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Tpo test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-not-writable-after-shutdown.c' object='test/run_tests-test-not-writable-after-shutdown.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-not-writable-after-shutdown.o `test -f 'test/test-not-writable-after-shutdown.c' || echo '$(srcdir)/'`test/test-not-writable-after-shutdown.c
test/run_tests-test-not-writable-after-shutdown.obj: test/test-not-writable-after-shutdown.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-not-writable-after-shutdown.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Tpo -c -o test/run_tests-test-not-writable-after-shutdown.obj `if test -f 'test/test-not-writable-after-shutdown.c'; then $(CYGPATH_W) 'test/test-not-writable-after-shutdown.c'; else $(CYGPATH_W) '$(srcdir)/test/test-not-writable-after-shutdown.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Tpo test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-not-writable-after-shutdown.c' object='test/run_tests-test-not-writable-after-shutdown.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-not-writable-after-shutdown.obj `if test -f 'test/test-not-writable-after-shutdown.c'; then $(CYGPATH_W) 'test/test-not-writable-after-shutdown.c'; else $(CYGPATH_W) '$(srcdir)/test/test-not-writable-after-shutdown.c'; fi`
test/run_tests-test-osx-select.o: test/test-osx-select.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-osx-select.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-osx-select.Tpo -c -o test/run_tests-test-osx-select.o `test -f 'test/test-osx-select.c' || echo '$(srcdir)/'`test/test-osx-select.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-osx-select.Tpo test/$(DEPDIR)/run_tests-test-osx-select.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-osx-select.c' object='test/run_tests-test-osx-select.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-osx-select.o `test -f 'test/test-osx-select.c' || echo '$(srcdir)/'`test/test-osx-select.c
test/run_tests-test-osx-select.obj: test/test-osx-select.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-osx-select.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-osx-select.Tpo -c -o test/run_tests-test-osx-select.obj `if test -f 'test/test-osx-select.c'; then $(CYGPATH_W) 'test/test-osx-select.c'; else $(CYGPATH_W) '$(srcdir)/test/test-osx-select.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-osx-select.Tpo test/$(DEPDIR)/run_tests-test-osx-select.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-osx-select.c' object='test/run_tests-test-osx-select.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-osx-select.obj `if test -f 'test/test-osx-select.c'; then $(CYGPATH_W) 'test/test-osx-select.c'; else $(CYGPATH_W) '$(srcdir)/test/test-osx-select.c'; fi`
test/run_tests-test-pass-always.o: test/test-pass-always.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pass-always.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pass-always.Tpo -c -o test/run_tests-test-pass-always.o `test -f 'test/test-pass-always.c' || echo '$(srcdir)/'`test/test-pass-always.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pass-always.Tpo test/$(DEPDIR)/run_tests-test-pass-always.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pass-always.c' object='test/run_tests-test-pass-always.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pass-always.o `test -f 'test/test-pass-always.c' || echo '$(srcdir)/'`test/test-pass-always.c
test/run_tests-test-pass-always.obj: test/test-pass-always.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pass-always.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pass-always.Tpo -c -o test/run_tests-test-pass-always.obj `if test -f 'test/test-pass-always.c'; then $(CYGPATH_W) 'test/test-pass-always.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pass-always.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pass-always.Tpo test/$(DEPDIR)/run_tests-test-pass-always.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pass-always.c' object='test/run_tests-test-pass-always.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pass-always.obj `if test -f 'test/test-pass-always.c'; then $(CYGPATH_W) 'test/test-pass-always.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pass-always.c'; fi`
test/run_tests-test-ping-pong.o: test/test-ping-pong.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ping-pong.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ping-pong.Tpo -c -o test/run_tests-test-ping-pong.o `test -f 'test/test-ping-pong.c' || echo '$(srcdir)/'`test/test-ping-pong.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ping-pong.Tpo test/$(DEPDIR)/run_tests-test-ping-pong.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ping-pong.c' object='test/run_tests-test-ping-pong.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ping-pong.o `test -f 'test/test-ping-pong.c' || echo '$(srcdir)/'`test/test-ping-pong.c
test/run_tests-test-ping-pong.obj: test/test-ping-pong.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ping-pong.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ping-pong.Tpo -c -o test/run_tests-test-ping-pong.obj `if test -f 'test/test-ping-pong.c'; then $(CYGPATH_W) 'test/test-ping-pong.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ping-pong.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ping-pong.Tpo test/$(DEPDIR)/run_tests-test-ping-pong.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ping-pong.c' object='test/run_tests-test-ping-pong.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ping-pong.obj `if test -f 'test/test-ping-pong.c'; then $(CYGPATH_W) 'test/test-ping-pong.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ping-pong.c'; fi`
test/run_tests-test-pipe-bind-error.o: test/test-pipe-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-bind-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-bind-error.Tpo -c -o test/run_tests-test-pipe-bind-error.o `test -f 'test/test-pipe-bind-error.c' || echo '$(srcdir)/'`test/test-pipe-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-bind-error.Tpo test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-bind-error.c' object='test/run_tests-test-pipe-bind-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-bind-error.o `test -f 'test/test-pipe-bind-error.c' || echo '$(srcdir)/'`test/test-pipe-bind-error.c
test/run_tests-test-pipe-bind-error.obj: test/test-pipe-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-bind-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-bind-error.Tpo -c -o test/run_tests-test-pipe-bind-error.obj `if test -f 'test/test-pipe-bind-error.c'; then $(CYGPATH_W) 'test/test-pipe-bind-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-bind-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-bind-error.Tpo test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-bind-error.c' object='test/run_tests-test-pipe-bind-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-bind-error.obj `if test -f 'test/test-pipe-bind-error.c'; then $(CYGPATH_W) 'test/test-pipe-bind-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-bind-error.c'; fi`
test/run_tests-test-pipe-connect-error.o: test/test-pipe-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-error.Tpo -c -o test/run_tests-test-pipe-connect-error.o `test -f 'test/test-pipe-connect-error.c' || echo '$(srcdir)/'`test/test-pipe-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-error.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-error.c' object='test/run_tests-test-pipe-connect-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-error.o `test -f 'test/test-pipe-connect-error.c' || echo '$(srcdir)/'`test/test-pipe-connect-error.c
test/run_tests-test-pipe-connect-error.obj: test/test-pipe-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-error.Tpo -c -o test/run_tests-test-pipe-connect-error.obj `if test -f 'test/test-pipe-connect-error.c'; then $(CYGPATH_W) 'test/test-pipe-connect-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-error.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-error.c' object='test/run_tests-test-pipe-connect-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-error.obj `if test -f 'test/test-pipe-connect-error.c'; then $(CYGPATH_W) 'test/test-pipe-connect-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-error.c'; fi`
test/run_tests-test-pipe-connect-multiple.o: test/test-pipe-connect-multiple.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-multiple.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Tpo -c -o test/run_tests-test-pipe-connect-multiple.o `test -f 'test/test-pipe-connect-multiple.c' || echo '$(srcdir)/'`test/test-pipe-connect-multiple.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-multiple.c' object='test/run_tests-test-pipe-connect-multiple.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-multiple.o `test -f 'test/test-pipe-connect-multiple.c' || echo '$(srcdir)/'`test/test-pipe-connect-multiple.c
test/run_tests-test-pipe-connect-multiple.obj: test/test-pipe-connect-multiple.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-multiple.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Tpo -c -o test/run_tests-test-pipe-connect-multiple.obj `if test -f 'test/test-pipe-connect-multiple.c'; then $(CYGPATH_W) 'test/test-pipe-connect-multiple.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-multiple.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-multiple.c' object='test/run_tests-test-pipe-connect-multiple.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-multiple.obj `if test -f 'test/test-pipe-connect-multiple.c'; then $(CYGPATH_W) 'test/test-pipe-connect-multiple.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-multiple.c'; fi`
test/run_tests-test-pipe-connect-prepare.o: test/test-pipe-connect-prepare.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-prepare.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Tpo -c -o test/run_tests-test-pipe-connect-prepare.o `test -f 'test/test-pipe-connect-prepare.c' || echo '$(srcdir)/'`test/test-pipe-connect-prepare.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-prepare.c' object='test/run_tests-test-pipe-connect-prepare.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-prepare.o `test -f 'test/test-pipe-connect-prepare.c' || echo '$(srcdir)/'`test/test-pipe-connect-prepare.c
test/run_tests-test-pipe-connect-prepare.obj: test/test-pipe-connect-prepare.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-connect-prepare.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Tpo -c -o test/run_tests-test-pipe-connect-prepare.obj `if test -f 'test/test-pipe-connect-prepare.c'; then $(CYGPATH_W) 'test/test-pipe-connect-prepare.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-prepare.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Tpo test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-connect-prepare.c' object='test/run_tests-test-pipe-connect-prepare.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-connect-prepare.obj `if test -f 'test/test-pipe-connect-prepare.c'; then $(CYGPATH_W) 'test/test-pipe-connect-prepare.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-connect-prepare.c'; fi`
test/run_tests-test-pipe-getsockname.o: test/test-pipe-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-getsockname.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-getsockname.Tpo -c -o test/run_tests-test-pipe-getsockname.o `test -f 'test/test-pipe-getsockname.c' || echo '$(srcdir)/'`test/test-pipe-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-getsockname.Tpo test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-getsockname.c' object='test/run_tests-test-pipe-getsockname.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-getsockname.o `test -f 'test/test-pipe-getsockname.c' || echo '$(srcdir)/'`test/test-pipe-getsockname.c
test/run_tests-test-pipe-getsockname.obj: test/test-pipe-getsockname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-getsockname.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-getsockname.Tpo -c -o test/run_tests-test-pipe-getsockname.obj `if test -f 'test/test-pipe-getsockname.c'; then $(CYGPATH_W) 'test/test-pipe-getsockname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-getsockname.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-getsockname.Tpo test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-getsockname.c' object='test/run_tests-test-pipe-getsockname.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-getsockname.obj `if test -f 'test/test-pipe-getsockname.c'; then $(CYGPATH_W) 'test/test-pipe-getsockname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-getsockname.c'; fi`
test/run_tests-test-pipe-pending-instances.o: test/test-pipe-pending-instances.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-pending-instances.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Tpo -c -o test/run_tests-test-pipe-pending-instances.o `test -f 'test/test-pipe-pending-instances.c' || echo '$(srcdir)/'`test/test-pipe-pending-instances.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Tpo test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-pending-instances.c' object='test/run_tests-test-pipe-pending-instances.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-pending-instances.o `test -f 'test/test-pipe-pending-instances.c' || echo '$(srcdir)/'`test/test-pipe-pending-instances.c
test/run_tests-test-pipe-pending-instances.obj: test/test-pipe-pending-instances.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-pending-instances.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Tpo -c -o test/run_tests-test-pipe-pending-instances.obj `if test -f 'test/test-pipe-pending-instances.c'; then $(CYGPATH_W) 'test/test-pipe-pending-instances.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-pending-instances.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Tpo test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-pending-instances.c' object='test/run_tests-test-pipe-pending-instances.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-pending-instances.obj `if test -f 'test/test-pipe-pending-instances.c'; then $(CYGPATH_W) 'test/test-pipe-pending-instances.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-pending-instances.c'; fi`
test/run_tests-test-pipe-sendmsg.o: test/test-pipe-sendmsg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-sendmsg.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Tpo -c -o test/run_tests-test-pipe-sendmsg.o `test -f 'test/test-pipe-sendmsg.c' || echo '$(srcdir)/'`test/test-pipe-sendmsg.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Tpo test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-sendmsg.c' object='test/run_tests-test-pipe-sendmsg.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-sendmsg.o `test -f 'test/test-pipe-sendmsg.c' || echo '$(srcdir)/'`test/test-pipe-sendmsg.c
test/run_tests-test-pipe-sendmsg.obj: test/test-pipe-sendmsg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-sendmsg.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Tpo -c -o test/run_tests-test-pipe-sendmsg.obj `if test -f 'test/test-pipe-sendmsg.c'; then $(CYGPATH_W) 'test/test-pipe-sendmsg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-sendmsg.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Tpo test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-sendmsg.c' object='test/run_tests-test-pipe-sendmsg.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-sendmsg.obj `if test -f 'test/test-pipe-sendmsg.c'; then $(CYGPATH_W) 'test/test-pipe-sendmsg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-sendmsg.c'; fi`
test/run_tests-test-pipe-server-close.o: test/test-pipe-server-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-server-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-server-close.Tpo -c -o test/run_tests-test-pipe-server-close.o `test -f 'test/test-pipe-server-close.c' || echo '$(srcdir)/'`test/test-pipe-server-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-server-close.Tpo test/$(DEPDIR)/run_tests-test-pipe-server-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-server-close.c' object='test/run_tests-test-pipe-server-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-server-close.o `test -f 'test/test-pipe-server-close.c' || echo '$(srcdir)/'`test/test-pipe-server-close.c
test/run_tests-test-pipe-server-close.obj: test/test-pipe-server-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-server-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-server-close.Tpo -c -o test/run_tests-test-pipe-server-close.obj `if test -f 'test/test-pipe-server-close.c'; then $(CYGPATH_W) 'test/test-pipe-server-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-server-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-server-close.Tpo test/$(DEPDIR)/run_tests-test-pipe-server-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-server-close.c' object='test/run_tests-test-pipe-server-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-server-close.obj `if test -f 'test/test-pipe-server-close.c'; then $(CYGPATH_W) 'test/test-pipe-server-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-server-close.c'; fi`
test/run_tests-test-pipe-close-stdout-read-stdin.o: test/test-pipe-close-stdout-read-stdin.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-close-stdout-read-stdin.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Tpo -c -o test/run_tests-test-pipe-close-stdout-read-stdin.o `test -f 'test/test-pipe-close-stdout-read-stdin.c' || echo '$(srcdir)/'`test/test-pipe-close-stdout-read-stdin.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Tpo test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-close-stdout-read-stdin.c' object='test/run_tests-test-pipe-close-stdout-read-stdin.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-close-stdout-read-stdin.o `test -f 'test/test-pipe-close-stdout-read-stdin.c' || echo '$(srcdir)/'`test/test-pipe-close-stdout-read-stdin.c
test/run_tests-test-pipe-close-stdout-read-stdin.obj: test/test-pipe-close-stdout-read-stdin.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-close-stdout-read-stdin.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Tpo -c -o test/run_tests-test-pipe-close-stdout-read-stdin.obj `if test -f 'test/test-pipe-close-stdout-read-stdin.c'; then $(CYGPATH_W) 'test/test-pipe-close-stdout-read-stdin.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-close-stdout-read-stdin.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Tpo test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-close-stdout-read-stdin.c' object='test/run_tests-test-pipe-close-stdout-read-stdin.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-close-stdout-read-stdin.obj `if test -f 'test/test-pipe-close-stdout-read-stdin.c'; then $(CYGPATH_W) 'test/test-pipe-close-stdout-read-stdin.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-close-stdout-read-stdin.c'; fi`
test/run_tests-test-pipe-set-non-blocking.o: test/test-pipe-set-non-blocking.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-set-non-blocking.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Tpo -c -o test/run_tests-test-pipe-set-non-blocking.o `test -f 'test/test-pipe-set-non-blocking.c' || echo '$(srcdir)/'`test/test-pipe-set-non-blocking.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Tpo test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-set-non-blocking.c' object='test/run_tests-test-pipe-set-non-blocking.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-set-non-blocking.o `test -f 'test/test-pipe-set-non-blocking.c' || echo '$(srcdir)/'`test/test-pipe-set-non-blocking.c
test/run_tests-test-pipe-set-non-blocking.obj: test/test-pipe-set-non-blocking.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-set-non-blocking.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Tpo -c -o test/run_tests-test-pipe-set-non-blocking.obj `if test -f 'test/test-pipe-set-non-blocking.c'; then $(CYGPATH_W) 'test/test-pipe-set-non-blocking.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-set-non-blocking.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Tpo test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-set-non-blocking.c' object='test/run_tests-test-pipe-set-non-blocking.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-set-non-blocking.obj `if test -f 'test/test-pipe-set-non-blocking.c'; then $(CYGPATH_W) 'test/test-pipe-set-non-blocking.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-set-non-blocking.c'; fi`
test/run_tests-test-pipe-set-fchmod.o: test/test-pipe-set-fchmod.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-set-fchmod.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Tpo -c -o test/run_tests-test-pipe-set-fchmod.o `test -f 'test/test-pipe-set-fchmod.c' || echo '$(srcdir)/'`test/test-pipe-set-fchmod.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Tpo test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-set-fchmod.c' object='test/run_tests-test-pipe-set-fchmod.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-set-fchmod.o `test -f 'test/test-pipe-set-fchmod.c' || echo '$(srcdir)/'`test/test-pipe-set-fchmod.c
test/run_tests-test-pipe-set-fchmod.obj: test/test-pipe-set-fchmod.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-pipe-set-fchmod.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Tpo -c -o test/run_tests-test-pipe-set-fchmod.obj `if test -f 'test/test-pipe-set-fchmod.c'; then $(CYGPATH_W) 'test/test-pipe-set-fchmod.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-set-fchmod.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Tpo test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-pipe-set-fchmod.c' object='test/run_tests-test-pipe-set-fchmod.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-pipe-set-fchmod.obj `if test -f 'test/test-pipe-set-fchmod.c'; then $(CYGPATH_W) 'test/test-pipe-set-fchmod.c'; else $(CYGPATH_W) '$(srcdir)/test/test-pipe-set-fchmod.c'; fi`
test/run_tests-test-platform-output.o: test/test-platform-output.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-platform-output.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-platform-output.Tpo -c -o test/run_tests-test-platform-output.o `test -f 'test/test-platform-output.c' || echo '$(srcdir)/'`test/test-platform-output.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-platform-output.Tpo test/$(DEPDIR)/run_tests-test-platform-output.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-platform-output.c' object='test/run_tests-test-platform-output.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-platform-output.o `test -f 'test/test-platform-output.c' || echo '$(srcdir)/'`test/test-platform-output.c
test/run_tests-test-platform-output.obj: test/test-platform-output.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-platform-output.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-platform-output.Tpo -c -o test/run_tests-test-platform-output.obj `if test -f 'test/test-platform-output.c'; then $(CYGPATH_W) 'test/test-platform-output.c'; else $(CYGPATH_W) '$(srcdir)/test/test-platform-output.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-platform-output.Tpo test/$(DEPDIR)/run_tests-test-platform-output.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-platform-output.c' object='test/run_tests-test-platform-output.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-platform-output.obj `if test -f 'test/test-platform-output.c'; then $(CYGPATH_W) 'test/test-platform-output.c'; else $(CYGPATH_W) '$(srcdir)/test/test-platform-output.c'; fi`
test/run_tests-test-poll.o: test/test-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll.Tpo -c -o test/run_tests-test-poll.o `test -f 'test/test-poll.c' || echo '$(srcdir)/'`test/test-poll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll.Tpo test/$(DEPDIR)/run_tests-test-poll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll.c' object='test/run_tests-test-poll.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll.o `test -f 'test/test-poll.c' || echo '$(srcdir)/'`test/test-poll.c
test/run_tests-test-poll.obj: test/test-poll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll.Tpo -c -o test/run_tests-test-poll.obj `if test -f 'test/test-poll.c'; then $(CYGPATH_W) 'test/test-poll.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll.Tpo test/$(DEPDIR)/run_tests-test-poll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll.c' object='test/run_tests-test-poll.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll.obj `if test -f 'test/test-poll.c'; then $(CYGPATH_W) 'test/test-poll.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll.c'; fi`
test/run_tests-test-poll-close.o: test/test-poll-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-close.Tpo -c -o test/run_tests-test-poll-close.o `test -f 'test/test-poll-close.c' || echo '$(srcdir)/'`test/test-poll-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-close.Tpo test/$(DEPDIR)/run_tests-test-poll-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-close.c' object='test/run_tests-test-poll-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-close.o `test -f 'test/test-poll-close.c' || echo '$(srcdir)/'`test/test-poll-close.c
test/run_tests-test-poll-close.obj: test/test-poll-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-close.Tpo -c -o test/run_tests-test-poll-close.obj `if test -f 'test/test-poll-close.c'; then $(CYGPATH_W) 'test/test-poll-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-close.Tpo test/$(DEPDIR)/run_tests-test-poll-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-close.c' object='test/run_tests-test-poll-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-close.obj `if test -f 'test/test-poll-close.c'; then $(CYGPATH_W) 'test/test-poll-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-close.c'; fi`
test/run_tests-test-poll-close-doesnt-corrupt-stack.o: test/test-poll-close-doesnt-corrupt-stack.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-close-doesnt-corrupt-stack.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Tpo -c -o test/run_tests-test-poll-close-doesnt-corrupt-stack.o `test -f 'test/test-poll-close-doesnt-corrupt-stack.c' || echo '$(srcdir)/'`test/test-poll-close-doesnt-corrupt-stack.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Tpo test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-close-doesnt-corrupt-stack.c' object='test/run_tests-test-poll-close-doesnt-corrupt-stack.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-close-doesnt-corrupt-stack.o `test -f 'test/test-poll-close-doesnt-corrupt-stack.c' || echo '$(srcdir)/'`test/test-poll-close-doesnt-corrupt-stack.c
test/run_tests-test-poll-close-doesnt-corrupt-stack.obj: test/test-poll-close-doesnt-corrupt-stack.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-close-doesnt-corrupt-stack.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Tpo -c -o test/run_tests-test-poll-close-doesnt-corrupt-stack.obj `if test -f 'test/test-poll-close-doesnt-corrupt-stack.c'; then $(CYGPATH_W) 'test/test-poll-close-doesnt-corrupt-stack.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-close-doesnt-corrupt-stack.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Tpo test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-close-doesnt-corrupt-stack.c' object='test/run_tests-test-poll-close-doesnt-corrupt-stack.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-close-doesnt-corrupt-stack.obj `if test -f 'test/test-poll-close-doesnt-corrupt-stack.c'; then $(CYGPATH_W) 'test/test-poll-close-doesnt-corrupt-stack.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-close-doesnt-corrupt-stack.c'; fi`
test/run_tests-test-poll-closesocket.o: test/test-poll-closesocket.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-closesocket.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-closesocket.Tpo -c -o test/run_tests-test-poll-closesocket.o `test -f 'test/test-poll-closesocket.c' || echo '$(srcdir)/'`test/test-poll-closesocket.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-closesocket.Tpo test/$(DEPDIR)/run_tests-test-poll-closesocket.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-closesocket.c' object='test/run_tests-test-poll-closesocket.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-closesocket.o `test -f 'test/test-poll-closesocket.c' || echo '$(srcdir)/'`test/test-poll-closesocket.c
test/run_tests-test-poll-closesocket.obj: test/test-poll-closesocket.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-closesocket.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-closesocket.Tpo -c -o test/run_tests-test-poll-closesocket.obj `if test -f 'test/test-poll-closesocket.c'; then $(CYGPATH_W) 'test/test-poll-closesocket.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-closesocket.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-closesocket.Tpo test/$(DEPDIR)/run_tests-test-poll-closesocket.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-closesocket.c' object='test/run_tests-test-poll-closesocket.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-closesocket.obj `if test -f 'test/test-poll-closesocket.c'; then $(CYGPATH_W) 'test/test-poll-closesocket.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-closesocket.c'; fi`
test/run_tests-test-poll-multiple-handles.o: test/test-poll-multiple-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-multiple-handles.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Tpo -c -o test/run_tests-test-poll-multiple-handles.o `test -f 'test/test-poll-multiple-handles.c' || echo '$(srcdir)/'`test/test-poll-multiple-handles.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Tpo test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-multiple-handles.c' object='test/run_tests-test-poll-multiple-handles.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-multiple-handles.o `test -f 'test/test-poll-multiple-handles.c' || echo '$(srcdir)/'`test/test-poll-multiple-handles.c
test/run_tests-test-poll-multiple-handles.obj: test/test-poll-multiple-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-multiple-handles.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Tpo -c -o test/run_tests-test-poll-multiple-handles.obj `if test -f 'test/test-poll-multiple-handles.c'; then $(CYGPATH_W) 'test/test-poll-multiple-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-multiple-handles.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Tpo test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-multiple-handles.c' object='test/run_tests-test-poll-multiple-handles.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-multiple-handles.obj `if test -f 'test/test-poll-multiple-handles.c'; then $(CYGPATH_W) 'test/test-poll-multiple-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-multiple-handles.c'; fi`
test/run_tests-test-poll-oob.o: test/test-poll-oob.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-oob.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-oob.Tpo -c -o test/run_tests-test-poll-oob.o `test -f 'test/test-poll-oob.c' || echo '$(srcdir)/'`test/test-poll-oob.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-oob.Tpo test/$(DEPDIR)/run_tests-test-poll-oob.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-oob.c' object='test/run_tests-test-poll-oob.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-oob.o `test -f 'test/test-poll-oob.c' || echo '$(srcdir)/'`test/test-poll-oob.c
test/run_tests-test-poll-oob.obj: test/test-poll-oob.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-poll-oob.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-poll-oob.Tpo -c -o test/run_tests-test-poll-oob.obj `if test -f 'test/test-poll-oob.c'; then $(CYGPATH_W) 'test/test-poll-oob.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-oob.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-poll-oob.Tpo test/$(DEPDIR)/run_tests-test-poll-oob.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-poll-oob.c' object='test/run_tests-test-poll-oob.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-poll-oob.obj `if test -f 'test/test-poll-oob.c'; then $(CYGPATH_W) 'test/test-poll-oob.c'; else $(CYGPATH_W) '$(srcdir)/test/test-poll-oob.c'; fi`
test/run_tests-test-process-priority.o: test/test-process-priority.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-priority.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-priority.Tpo -c -o test/run_tests-test-process-priority.o `test -f 'test/test-process-priority.c' || echo '$(srcdir)/'`test/test-process-priority.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-priority.Tpo test/$(DEPDIR)/run_tests-test-process-priority.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-priority.c' object='test/run_tests-test-process-priority.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-priority.o `test -f 'test/test-process-priority.c' || echo '$(srcdir)/'`test/test-process-priority.c
test/run_tests-test-process-priority.obj: test/test-process-priority.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-priority.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-priority.Tpo -c -o test/run_tests-test-process-priority.obj `if test -f 'test/test-process-priority.c'; then $(CYGPATH_W) 'test/test-process-priority.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-priority.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-priority.Tpo test/$(DEPDIR)/run_tests-test-process-priority.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-priority.c' object='test/run_tests-test-process-priority.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-priority.obj `if test -f 'test/test-process-priority.c'; then $(CYGPATH_W) 'test/test-process-priority.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-priority.c'; fi`
test/run_tests-test-process-title.o: test/test-process-title.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-title.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-title.Tpo -c -o test/run_tests-test-process-title.o `test -f 'test/test-process-title.c' || echo '$(srcdir)/'`test/test-process-title.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-title.Tpo test/$(DEPDIR)/run_tests-test-process-title.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-title.c' object='test/run_tests-test-process-title.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-title.o `test -f 'test/test-process-title.c' || echo '$(srcdir)/'`test/test-process-title.c
test/run_tests-test-process-title.obj: test/test-process-title.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-title.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-title.Tpo -c -o test/run_tests-test-process-title.obj `if test -f 'test/test-process-title.c'; then $(CYGPATH_W) 'test/test-process-title.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-title.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-title.Tpo test/$(DEPDIR)/run_tests-test-process-title.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-title.c' object='test/run_tests-test-process-title.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-title.obj `if test -f 'test/test-process-title.c'; then $(CYGPATH_W) 'test/test-process-title.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-title.c'; fi`
test/run_tests-test-process-title-threadsafe.o: test/test-process-title-threadsafe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-title-threadsafe.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Tpo -c -o test/run_tests-test-process-title-threadsafe.o `test -f 'test/test-process-title-threadsafe.c' || echo '$(srcdir)/'`test/test-process-title-threadsafe.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Tpo test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-title-threadsafe.c' object='test/run_tests-test-process-title-threadsafe.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-title-threadsafe.o `test -f 'test/test-process-title-threadsafe.c' || echo '$(srcdir)/'`test/test-process-title-threadsafe.c
test/run_tests-test-process-title-threadsafe.obj: test/test-process-title-threadsafe.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-process-title-threadsafe.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Tpo -c -o test/run_tests-test-process-title-threadsafe.obj `if test -f 'test/test-process-title-threadsafe.c'; then $(CYGPATH_W) 'test/test-process-title-threadsafe.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-title-threadsafe.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Tpo test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-process-title-threadsafe.c' object='test/run_tests-test-process-title-threadsafe.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-process-title-threadsafe.obj `if test -f 'test/test-process-title-threadsafe.c'; then $(CYGPATH_W) 'test/test-process-title-threadsafe.c'; else $(CYGPATH_W) '$(srcdir)/test/test-process-title-threadsafe.c'; fi`
test/run_tests-test-queue-foreach-delete.o: test/test-queue-foreach-delete.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-queue-foreach-delete.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Tpo -c -o test/run_tests-test-queue-foreach-delete.o `test -f 'test/test-queue-foreach-delete.c' || echo '$(srcdir)/'`test/test-queue-foreach-delete.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Tpo test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-queue-foreach-delete.c' object='test/run_tests-test-queue-foreach-delete.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-queue-foreach-delete.o `test -f 'test/test-queue-foreach-delete.c' || echo '$(srcdir)/'`test/test-queue-foreach-delete.c
test/run_tests-test-queue-foreach-delete.obj: test/test-queue-foreach-delete.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-queue-foreach-delete.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Tpo -c -o test/run_tests-test-queue-foreach-delete.obj `if test -f 'test/test-queue-foreach-delete.c'; then $(CYGPATH_W) 'test/test-queue-foreach-delete.c'; else $(CYGPATH_W) '$(srcdir)/test/test-queue-foreach-delete.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Tpo test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-queue-foreach-delete.c' object='test/run_tests-test-queue-foreach-delete.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-queue-foreach-delete.obj `if test -f 'test/test-queue-foreach-delete.c'; then $(CYGPATH_W) 'test/test-queue-foreach-delete.c'; else $(CYGPATH_W) '$(srcdir)/test/test-queue-foreach-delete.c'; fi`
test/run_tests-test-random.o: test/test-random.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-random.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-random.Tpo -c -o test/run_tests-test-random.o `test -f 'test/test-random.c' || echo '$(srcdir)/'`test/test-random.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-random.Tpo test/$(DEPDIR)/run_tests-test-random.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-random.c' object='test/run_tests-test-random.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-random.o `test -f 'test/test-random.c' || echo '$(srcdir)/'`test/test-random.c
test/run_tests-test-random.obj: test/test-random.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-random.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-random.Tpo -c -o test/run_tests-test-random.obj `if test -f 'test/test-random.c'; then $(CYGPATH_W) 'test/test-random.c'; else $(CYGPATH_W) '$(srcdir)/test/test-random.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-random.Tpo test/$(DEPDIR)/run_tests-test-random.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-random.c' object='test/run_tests-test-random.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-random.obj `if test -f 'test/test-random.c'; then $(CYGPATH_W) 'test/test-random.c'; else $(CYGPATH_W) '$(srcdir)/test/test-random.c'; fi`
test/run_tests-test-readable-on-eof.o: test/test-readable-on-eof.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-readable-on-eof.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-readable-on-eof.Tpo -c -o test/run_tests-test-readable-on-eof.o `test -f 'test/test-readable-on-eof.c' || echo '$(srcdir)/'`test/test-readable-on-eof.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-readable-on-eof.Tpo test/$(DEPDIR)/run_tests-test-readable-on-eof.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-readable-on-eof.c' object='test/run_tests-test-readable-on-eof.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-readable-on-eof.o `test -f 'test/test-readable-on-eof.c' || echo '$(srcdir)/'`test/test-readable-on-eof.c
test/run_tests-test-readable-on-eof.obj: test/test-readable-on-eof.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-readable-on-eof.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-readable-on-eof.Tpo -c -o test/run_tests-test-readable-on-eof.obj `if test -f 'test/test-readable-on-eof.c'; then $(CYGPATH_W) 'test/test-readable-on-eof.c'; else $(CYGPATH_W) '$(srcdir)/test/test-readable-on-eof.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-readable-on-eof.Tpo test/$(DEPDIR)/run_tests-test-readable-on-eof.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-readable-on-eof.c' object='test/run_tests-test-readable-on-eof.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-readable-on-eof.obj `if test -f 'test/test-readable-on-eof.c'; then $(CYGPATH_W) 'test/test-readable-on-eof.c'; else $(CYGPATH_W) '$(srcdir)/test/test-readable-on-eof.c'; fi`
test/run_tests-test-ref.o: test/test-ref.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ref.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-ref.Tpo -c -o test/run_tests-test-ref.o `test -f 'test/test-ref.c' || echo '$(srcdir)/'`test/test-ref.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ref.Tpo test/$(DEPDIR)/run_tests-test-ref.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ref.c' object='test/run_tests-test-ref.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ref.o `test -f 'test/test-ref.c' || echo '$(srcdir)/'`test/test-ref.c
test/run_tests-test-ref.obj: test/test-ref.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-ref.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-ref.Tpo -c -o test/run_tests-test-ref.obj `if test -f 'test/test-ref.c'; then $(CYGPATH_W) 'test/test-ref.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ref.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-ref.Tpo test/$(DEPDIR)/run_tests-test-ref.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-ref.c' object='test/run_tests-test-ref.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-ref.obj `if test -f 'test/test-ref.c'; then $(CYGPATH_W) 'test/test-ref.c'; else $(CYGPATH_W) '$(srcdir)/test/test-ref.c'; fi`
test/run_tests-test-run-nowait.o: test/test-run-nowait.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-run-nowait.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-run-nowait.Tpo -c -o test/run_tests-test-run-nowait.o `test -f 'test/test-run-nowait.c' || echo '$(srcdir)/'`test/test-run-nowait.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-run-nowait.Tpo test/$(DEPDIR)/run_tests-test-run-nowait.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-run-nowait.c' object='test/run_tests-test-run-nowait.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-run-nowait.o `test -f 'test/test-run-nowait.c' || echo '$(srcdir)/'`test/test-run-nowait.c
test/run_tests-test-run-nowait.obj: test/test-run-nowait.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-run-nowait.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-run-nowait.Tpo -c -o test/run_tests-test-run-nowait.obj `if test -f 'test/test-run-nowait.c'; then $(CYGPATH_W) 'test/test-run-nowait.c'; else $(CYGPATH_W) '$(srcdir)/test/test-run-nowait.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-run-nowait.Tpo test/$(DEPDIR)/run_tests-test-run-nowait.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-run-nowait.c' object='test/run_tests-test-run-nowait.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-run-nowait.obj `if test -f 'test/test-run-nowait.c'; then $(CYGPATH_W) 'test/test-run-nowait.c'; else $(CYGPATH_W) '$(srcdir)/test/test-run-nowait.c'; fi`
test/run_tests-test-run-once.o: test/test-run-once.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-run-once.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-run-once.Tpo -c -o test/run_tests-test-run-once.o `test -f 'test/test-run-once.c' || echo '$(srcdir)/'`test/test-run-once.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-run-once.Tpo test/$(DEPDIR)/run_tests-test-run-once.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-run-once.c' object='test/run_tests-test-run-once.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-run-once.o `test -f 'test/test-run-once.c' || echo '$(srcdir)/'`test/test-run-once.c
test/run_tests-test-run-once.obj: test/test-run-once.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-run-once.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-run-once.Tpo -c -o test/run_tests-test-run-once.obj `if test -f 'test/test-run-once.c'; then $(CYGPATH_W) 'test/test-run-once.c'; else $(CYGPATH_W) '$(srcdir)/test/test-run-once.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-run-once.Tpo test/$(DEPDIR)/run_tests-test-run-once.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-run-once.c' object='test/run_tests-test-run-once.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-run-once.obj `if test -f 'test/test-run-once.c'; then $(CYGPATH_W) 'test/test-run-once.c'; else $(CYGPATH_W) '$(srcdir)/test/test-run-once.c'; fi`
test/run_tests-test-semaphore.o: test/test-semaphore.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-semaphore.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-semaphore.Tpo -c -o test/run_tests-test-semaphore.o `test -f 'test/test-semaphore.c' || echo '$(srcdir)/'`test/test-semaphore.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-semaphore.Tpo test/$(DEPDIR)/run_tests-test-semaphore.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-semaphore.c' object='test/run_tests-test-semaphore.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-semaphore.o `test -f 'test/test-semaphore.c' || echo '$(srcdir)/'`test/test-semaphore.c
test/run_tests-test-semaphore.obj: test/test-semaphore.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-semaphore.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-semaphore.Tpo -c -o test/run_tests-test-semaphore.obj `if test -f 'test/test-semaphore.c'; then $(CYGPATH_W) 'test/test-semaphore.c'; else $(CYGPATH_W) '$(srcdir)/test/test-semaphore.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-semaphore.Tpo test/$(DEPDIR)/run_tests-test-semaphore.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-semaphore.c' object='test/run_tests-test-semaphore.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-semaphore.obj `if test -f 'test/test-semaphore.c'; then $(CYGPATH_W) 'test/test-semaphore.c'; else $(CYGPATH_W) '$(srcdir)/test/test-semaphore.c'; fi`
test/run_tests-test-shutdown-close.o: test/test-shutdown-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-close.Tpo -c -o test/run_tests-test-shutdown-close.o `test -f 'test/test-shutdown-close.c' || echo '$(srcdir)/'`test/test-shutdown-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-close.Tpo test/$(DEPDIR)/run_tests-test-shutdown-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-close.c' object='test/run_tests-test-shutdown-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-close.o `test -f 'test/test-shutdown-close.c' || echo '$(srcdir)/'`test/test-shutdown-close.c
test/run_tests-test-shutdown-close.obj: test/test-shutdown-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-close.Tpo -c -o test/run_tests-test-shutdown-close.obj `if test -f 'test/test-shutdown-close.c'; then $(CYGPATH_W) 'test/test-shutdown-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-close.Tpo test/$(DEPDIR)/run_tests-test-shutdown-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-close.c' object='test/run_tests-test-shutdown-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-close.obj `if test -f 'test/test-shutdown-close.c'; then $(CYGPATH_W) 'test/test-shutdown-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-close.c'; fi`
test/run_tests-test-shutdown-eof.o: test/test-shutdown-eof.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-eof.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-eof.Tpo -c -o test/run_tests-test-shutdown-eof.o `test -f 'test/test-shutdown-eof.c' || echo '$(srcdir)/'`test/test-shutdown-eof.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-eof.Tpo test/$(DEPDIR)/run_tests-test-shutdown-eof.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-eof.c' object='test/run_tests-test-shutdown-eof.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-eof.o `test -f 'test/test-shutdown-eof.c' || echo '$(srcdir)/'`test/test-shutdown-eof.c
test/run_tests-test-shutdown-eof.obj: test/test-shutdown-eof.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-eof.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-eof.Tpo -c -o test/run_tests-test-shutdown-eof.obj `if test -f 'test/test-shutdown-eof.c'; then $(CYGPATH_W) 'test/test-shutdown-eof.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-eof.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-eof.Tpo test/$(DEPDIR)/run_tests-test-shutdown-eof.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-eof.c' object='test/run_tests-test-shutdown-eof.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-eof.obj `if test -f 'test/test-shutdown-eof.c'; then $(CYGPATH_W) 'test/test-shutdown-eof.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-eof.c'; fi`
test/run_tests-test-shutdown-simultaneous.o: test/test-shutdown-simultaneous.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-simultaneous.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Tpo -c -o test/run_tests-test-shutdown-simultaneous.o `test -f 'test/test-shutdown-simultaneous.c' || echo '$(srcdir)/'`test/test-shutdown-simultaneous.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Tpo test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-simultaneous.c' object='test/run_tests-test-shutdown-simultaneous.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-simultaneous.o `test -f 'test/test-shutdown-simultaneous.c' || echo '$(srcdir)/'`test/test-shutdown-simultaneous.c
test/run_tests-test-shutdown-simultaneous.obj: test/test-shutdown-simultaneous.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-simultaneous.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Tpo -c -o test/run_tests-test-shutdown-simultaneous.obj `if test -f 'test/test-shutdown-simultaneous.c'; then $(CYGPATH_W) 'test/test-shutdown-simultaneous.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-simultaneous.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Tpo test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-simultaneous.c' object='test/run_tests-test-shutdown-simultaneous.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-simultaneous.obj `if test -f 'test/test-shutdown-simultaneous.c'; then $(CYGPATH_W) 'test/test-shutdown-simultaneous.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-simultaneous.c'; fi`
test/run_tests-test-shutdown-twice.o: test/test-shutdown-twice.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-twice.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-twice.Tpo -c -o test/run_tests-test-shutdown-twice.o `test -f 'test/test-shutdown-twice.c' || echo '$(srcdir)/'`test/test-shutdown-twice.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-twice.Tpo test/$(DEPDIR)/run_tests-test-shutdown-twice.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-twice.c' object='test/run_tests-test-shutdown-twice.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-twice.o `test -f 'test/test-shutdown-twice.c' || echo '$(srcdir)/'`test/test-shutdown-twice.c
test/run_tests-test-shutdown-twice.obj: test/test-shutdown-twice.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-shutdown-twice.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-shutdown-twice.Tpo -c -o test/run_tests-test-shutdown-twice.obj `if test -f 'test/test-shutdown-twice.c'; then $(CYGPATH_W) 'test/test-shutdown-twice.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-twice.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-shutdown-twice.Tpo test/$(DEPDIR)/run_tests-test-shutdown-twice.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-shutdown-twice.c' object='test/run_tests-test-shutdown-twice.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-shutdown-twice.obj `if test -f 'test/test-shutdown-twice.c'; then $(CYGPATH_W) 'test/test-shutdown-twice.c'; else $(CYGPATH_W) '$(srcdir)/test/test-shutdown-twice.c'; fi`
test/run_tests-test-signal-multiple-loops.o: test/test-signal-multiple-loops.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal-multiple-loops.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Tpo -c -o test/run_tests-test-signal-multiple-loops.o `test -f 'test/test-signal-multiple-loops.c' || echo '$(srcdir)/'`test/test-signal-multiple-loops.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Tpo test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal-multiple-loops.c' object='test/run_tests-test-signal-multiple-loops.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal-multiple-loops.o `test -f 'test/test-signal-multiple-loops.c' || echo '$(srcdir)/'`test/test-signal-multiple-loops.c
test/run_tests-test-signal-multiple-loops.obj: test/test-signal-multiple-loops.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal-multiple-loops.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Tpo -c -o test/run_tests-test-signal-multiple-loops.obj `if test -f 'test/test-signal-multiple-loops.c'; then $(CYGPATH_W) 'test/test-signal-multiple-loops.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal-multiple-loops.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Tpo test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal-multiple-loops.c' object='test/run_tests-test-signal-multiple-loops.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal-multiple-loops.obj `if test -f 'test/test-signal-multiple-loops.c'; then $(CYGPATH_W) 'test/test-signal-multiple-loops.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal-multiple-loops.c'; fi`
test/run_tests-test-signal-pending-on-close.o: test/test-signal-pending-on-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal-pending-on-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Tpo -c -o test/run_tests-test-signal-pending-on-close.o `test -f 'test/test-signal-pending-on-close.c' || echo '$(srcdir)/'`test/test-signal-pending-on-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Tpo test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal-pending-on-close.c' object='test/run_tests-test-signal-pending-on-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal-pending-on-close.o `test -f 'test/test-signal-pending-on-close.c' || echo '$(srcdir)/'`test/test-signal-pending-on-close.c
test/run_tests-test-signal-pending-on-close.obj: test/test-signal-pending-on-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal-pending-on-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Tpo -c -o test/run_tests-test-signal-pending-on-close.obj `if test -f 'test/test-signal-pending-on-close.c'; then $(CYGPATH_W) 'test/test-signal-pending-on-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal-pending-on-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Tpo test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal-pending-on-close.c' object='test/run_tests-test-signal-pending-on-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal-pending-on-close.obj `if test -f 'test/test-signal-pending-on-close.c'; then $(CYGPATH_W) 'test/test-signal-pending-on-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal-pending-on-close.c'; fi`
test/run_tests-test-signal.o: test/test-signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal.Tpo -c -o test/run_tests-test-signal.o `test -f 'test/test-signal.c' || echo '$(srcdir)/'`test/test-signal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal.Tpo test/$(DEPDIR)/run_tests-test-signal.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal.c' object='test/run_tests-test-signal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal.o `test -f 'test/test-signal.c' || echo '$(srcdir)/'`test/test-signal.c
test/run_tests-test-signal.obj: test/test-signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-signal.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-signal.Tpo -c -o test/run_tests-test-signal.obj `if test -f 'test/test-signal.c'; then $(CYGPATH_W) 'test/test-signal.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-signal.Tpo test/$(DEPDIR)/run_tests-test-signal.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-signal.c' object='test/run_tests-test-signal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-signal.obj `if test -f 'test/test-signal.c'; then $(CYGPATH_W) 'test/test-signal.c'; else $(CYGPATH_W) '$(srcdir)/test/test-signal.c'; fi`
test/run_tests-test-socket-buffer-size.o: test/test-socket-buffer-size.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-socket-buffer-size.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-socket-buffer-size.Tpo -c -o test/run_tests-test-socket-buffer-size.o `test -f 'test/test-socket-buffer-size.c' || echo '$(srcdir)/'`test/test-socket-buffer-size.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-socket-buffer-size.Tpo test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-socket-buffer-size.c' object='test/run_tests-test-socket-buffer-size.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-socket-buffer-size.o `test -f 'test/test-socket-buffer-size.c' || echo '$(srcdir)/'`test/test-socket-buffer-size.c
test/run_tests-test-socket-buffer-size.obj: test/test-socket-buffer-size.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-socket-buffer-size.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-socket-buffer-size.Tpo -c -o test/run_tests-test-socket-buffer-size.obj `if test -f 'test/test-socket-buffer-size.c'; then $(CYGPATH_W) 'test/test-socket-buffer-size.c'; else $(CYGPATH_W) '$(srcdir)/test/test-socket-buffer-size.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-socket-buffer-size.Tpo test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-socket-buffer-size.c' object='test/run_tests-test-socket-buffer-size.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-socket-buffer-size.obj `if test -f 'test/test-socket-buffer-size.c'; then $(CYGPATH_W) 'test/test-socket-buffer-size.c'; else $(CYGPATH_W) '$(srcdir)/test/test-socket-buffer-size.c'; fi`
test/run_tests-test-spawn.o: test/test-spawn.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-spawn.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-spawn.Tpo -c -o test/run_tests-test-spawn.o `test -f 'test/test-spawn.c' || echo '$(srcdir)/'`test/test-spawn.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-spawn.Tpo test/$(DEPDIR)/run_tests-test-spawn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-spawn.c' object='test/run_tests-test-spawn.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-spawn.o `test -f 'test/test-spawn.c' || echo '$(srcdir)/'`test/test-spawn.c
test/run_tests-test-spawn.obj: test/test-spawn.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-spawn.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-spawn.Tpo -c -o test/run_tests-test-spawn.obj `if test -f 'test/test-spawn.c'; then $(CYGPATH_W) 'test/test-spawn.c'; else $(CYGPATH_W) '$(srcdir)/test/test-spawn.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-spawn.Tpo test/$(DEPDIR)/run_tests-test-spawn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-spawn.c' object='test/run_tests-test-spawn.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-spawn.obj `if test -f 'test/test-spawn.c'; then $(CYGPATH_W) 'test/test-spawn.c'; else $(CYGPATH_W) '$(srcdir)/test/test-spawn.c'; fi`
test/run_tests-test-stdio-over-pipes.o: test/test-stdio-over-pipes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-stdio-over-pipes.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Tpo -c -o test/run_tests-test-stdio-over-pipes.o `test -f 'test/test-stdio-over-pipes.c' || echo '$(srcdir)/'`test/test-stdio-over-pipes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Tpo test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-stdio-over-pipes.c' object='test/run_tests-test-stdio-over-pipes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-stdio-over-pipes.o `test -f 'test/test-stdio-over-pipes.c' || echo '$(srcdir)/'`test/test-stdio-over-pipes.c
test/run_tests-test-stdio-over-pipes.obj: test/test-stdio-over-pipes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-stdio-over-pipes.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Tpo -c -o test/run_tests-test-stdio-over-pipes.obj `if test -f 'test/test-stdio-over-pipes.c'; then $(CYGPATH_W) 'test/test-stdio-over-pipes.c'; else $(CYGPATH_W) '$(srcdir)/test/test-stdio-over-pipes.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Tpo test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-stdio-over-pipes.c' object='test/run_tests-test-stdio-over-pipes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-stdio-over-pipes.obj `if test -f 'test/test-stdio-over-pipes.c'; then $(CYGPATH_W) 'test/test-stdio-over-pipes.c'; else $(CYGPATH_W) '$(srcdir)/test/test-stdio-over-pipes.c'; fi`
test/run_tests-test-strscpy.o: test/test-strscpy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-strscpy.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-strscpy.Tpo -c -o test/run_tests-test-strscpy.o `test -f 'test/test-strscpy.c' || echo '$(srcdir)/'`test/test-strscpy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-strscpy.Tpo test/$(DEPDIR)/run_tests-test-strscpy.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-strscpy.c' object='test/run_tests-test-strscpy.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-strscpy.o `test -f 'test/test-strscpy.c' || echo '$(srcdir)/'`test/test-strscpy.c
test/run_tests-test-strscpy.obj: test/test-strscpy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-strscpy.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-strscpy.Tpo -c -o test/run_tests-test-strscpy.obj `if test -f 'test/test-strscpy.c'; then $(CYGPATH_W) 'test/test-strscpy.c'; else $(CYGPATH_W) '$(srcdir)/test/test-strscpy.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-strscpy.Tpo test/$(DEPDIR)/run_tests-test-strscpy.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-strscpy.c' object='test/run_tests-test-strscpy.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-strscpy.obj `if test -f 'test/test-strscpy.c'; then $(CYGPATH_W) 'test/test-strscpy.c'; else $(CYGPATH_W) '$(srcdir)/test/test-strscpy.c'; fi`
test/run_tests-test-strtok.o: test/test-strtok.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-strtok.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-strtok.Tpo -c -o test/run_tests-test-strtok.o `test -f 'test/test-strtok.c' || echo '$(srcdir)/'`test/test-strtok.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-strtok.Tpo test/$(DEPDIR)/run_tests-test-strtok.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-strtok.c' object='test/run_tests-test-strtok.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-strtok.o `test -f 'test/test-strtok.c' || echo '$(srcdir)/'`test/test-strtok.c
test/run_tests-test-strtok.obj: test/test-strtok.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-strtok.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-strtok.Tpo -c -o test/run_tests-test-strtok.obj `if test -f 'test/test-strtok.c'; then $(CYGPATH_W) 'test/test-strtok.c'; else $(CYGPATH_W) '$(srcdir)/test/test-strtok.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-strtok.Tpo test/$(DEPDIR)/run_tests-test-strtok.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-strtok.c' object='test/run_tests-test-strtok.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-strtok.obj `if test -f 'test/test-strtok.c'; then $(CYGPATH_W) 'test/test-strtok.c'; else $(CYGPATH_W) '$(srcdir)/test/test-strtok.c'; fi`
test/run_tests-test-tcp-alloc-cb-fail.o: test/test-tcp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-alloc-cb-fail.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Tpo -c -o test/run_tests-test-tcp-alloc-cb-fail.o `test -f 'test/test-tcp-alloc-cb-fail.c' || echo '$(srcdir)/'`test/test-tcp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Tpo test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-alloc-cb-fail.c' object='test/run_tests-test-tcp-alloc-cb-fail.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-alloc-cb-fail.o `test -f 'test/test-tcp-alloc-cb-fail.c' || echo '$(srcdir)/'`test/test-tcp-alloc-cb-fail.c
test/run_tests-test-tcp-alloc-cb-fail.obj: test/test-tcp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-alloc-cb-fail.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Tpo -c -o test/run_tests-test-tcp-alloc-cb-fail.obj `if test -f 'test/test-tcp-alloc-cb-fail.c'; then $(CYGPATH_W) 'test/test-tcp-alloc-cb-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-alloc-cb-fail.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Tpo test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-alloc-cb-fail.c' object='test/run_tests-test-tcp-alloc-cb-fail.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-alloc-cb-fail.obj `if test -f 'test/test-tcp-alloc-cb-fail.c'; then $(CYGPATH_W) 'test/test-tcp-alloc-cb-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-alloc-cb-fail.c'; fi`
test/run_tests-test-tcp-bind-error.o: test/test-tcp-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-bind-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-bind-error.Tpo -c -o test/run_tests-test-tcp-bind-error.o `test -f 'test/test-tcp-bind-error.c' || echo '$(srcdir)/'`test/test-tcp-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-bind-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-bind-error.c' object='test/run_tests-test-tcp-bind-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-bind-error.o `test -f 'test/test-tcp-bind-error.c' || echo '$(srcdir)/'`test/test-tcp-bind-error.c
test/run_tests-test-tcp-bind-error.obj: test/test-tcp-bind-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-bind-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-bind-error.Tpo -c -o test/run_tests-test-tcp-bind-error.obj `if test -f 'test/test-tcp-bind-error.c'; then $(CYGPATH_W) 'test/test-tcp-bind-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-bind-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-bind-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-bind-error.c' object='test/run_tests-test-tcp-bind-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-bind-error.obj `if test -f 'test/test-tcp-bind-error.c'; then $(CYGPATH_W) 'test/test-tcp-bind-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-bind-error.c'; fi`
test/run_tests-test-tcp-bind6-error.o: test/test-tcp-bind6-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-bind6-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Tpo -c -o test/run_tests-test-tcp-bind6-error.o `test -f 'test/test-tcp-bind6-error.c' || echo '$(srcdir)/'`test/test-tcp-bind6-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-bind6-error.c' object='test/run_tests-test-tcp-bind6-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-bind6-error.o `test -f 'test/test-tcp-bind6-error.c' || echo '$(srcdir)/'`test/test-tcp-bind6-error.c
test/run_tests-test-tcp-bind6-error.obj: test/test-tcp-bind6-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-bind6-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Tpo -c -o test/run_tests-test-tcp-bind6-error.obj `if test -f 'test/test-tcp-bind6-error.c'; then $(CYGPATH_W) 'test/test-tcp-bind6-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-bind6-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-bind6-error.c' object='test/run_tests-test-tcp-bind6-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-bind6-error.obj `if test -f 'test/test-tcp-bind6-error.c'; then $(CYGPATH_W) 'test/test-tcp-bind6-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-bind6-error.c'; fi`
test/run_tests-test-tcp-close-accept.o: test/test-tcp-close-accept.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-accept.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-accept.Tpo -c -o test/run_tests-test-tcp-close-accept.o `test -f 'test/test-tcp-close-accept.c' || echo '$(srcdir)/'`test/test-tcp-close-accept.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-accept.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-accept.c' object='test/run_tests-test-tcp-close-accept.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-accept.o `test -f 'test/test-tcp-close-accept.c' || echo '$(srcdir)/'`test/test-tcp-close-accept.c
test/run_tests-test-tcp-close-accept.obj: test/test-tcp-close-accept.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-accept.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-accept.Tpo -c -o test/run_tests-test-tcp-close-accept.obj `if test -f 'test/test-tcp-close-accept.c'; then $(CYGPATH_W) 'test/test-tcp-close-accept.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-accept.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-accept.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-accept.c' object='test/run_tests-test-tcp-close-accept.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-accept.obj `if test -f 'test/test-tcp-close-accept.c'; then $(CYGPATH_W) 'test/test-tcp-close-accept.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-accept.c'; fi`
test/run_tests-test-tcp-close-while-connecting.o: test/test-tcp-close-while-connecting.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-while-connecting.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Tpo -c -o test/run_tests-test-tcp-close-while-connecting.o `test -f 'test/test-tcp-close-while-connecting.c' || echo '$(srcdir)/'`test/test-tcp-close-while-connecting.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-while-connecting.c' object='test/run_tests-test-tcp-close-while-connecting.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-while-connecting.o `test -f 'test/test-tcp-close-while-connecting.c' || echo '$(srcdir)/'`test/test-tcp-close-while-connecting.c
test/run_tests-test-tcp-close-while-connecting.obj: test/test-tcp-close-while-connecting.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-while-connecting.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Tpo -c -o test/run_tests-test-tcp-close-while-connecting.obj `if test -f 'test/test-tcp-close-while-connecting.c'; then $(CYGPATH_W) 'test/test-tcp-close-while-connecting.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-while-connecting.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-while-connecting.c' object='test/run_tests-test-tcp-close-while-connecting.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-while-connecting.obj `if test -f 'test/test-tcp-close-while-connecting.c'; then $(CYGPATH_W) 'test/test-tcp-close-while-connecting.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-while-connecting.c'; fi`
test/run_tests-test-tcp-close-after-read-timeout.o: test/test-tcp-close-after-read-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-after-read-timeout.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Tpo -c -o test/run_tests-test-tcp-close-after-read-timeout.o `test -f 'test/test-tcp-close-after-read-timeout.c' || echo '$(srcdir)/'`test/test-tcp-close-after-read-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-after-read-timeout.c' object='test/run_tests-test-tcp-close-after-read-timeout.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-after-read-timeout.o `test -f 'test/test-tcp-close-after-read-timeout.c' || echo '$(srcdir)/'`test/test-tcp-close-after-read-timeout.c
test/run_tests-test-tcp-close-after-read-timeout.obj: test/test-tcp-close-after-read-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-after-read-timeout.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Tpo -c -o test/run_tests-test-tcp-close-after-read-timeout.obj `if test -f 'test/test-tcp-close-after-read-timeout.c'; then $(CYGPATH_W) 'test/test-tcp-close-after-read-timeout.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-after-read-timeout.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-after-read-timeout.c' object='test/run_tests-test-tcp-close-after-read-timeout.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-after-read-timeout.obj `if test -f 'test/test-tcp-close-after-read-timeout.c'; then $(CYGPATH_W) 'test/test-tcp-close-after-read-timeout.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-after-read-timeout.c'; fi`
test/run_tests-test-tcp-close.o: test/test-tcp-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close.Tpo -c -o test/run_tests-test-tcp-close.o `test -f 'test/test-tcp-close.c' || echo '$(srcdir)/'`test/test-tcp-close.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close.Tpo test/$(DEPDIR)/run_tests-test-tcp-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close.c' object='test/run_tests-test-tcp-close.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close.o `test -f 'test/test-tcp-close.c' || echo '$(srcdir)/'`test/test-tcp-close.c
test/run_tests-test-tcp-close.obj: test/test-tcp-close.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close.Tpo -c -o test/run_tests-test-tcp-close.obj `if test -f 'test/test-tcp-close.c'; then $(CYGPATH_W) 'test/test-tcp-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close.Tpo test/$(DEPDIR)/run_tests-test-tcp-close.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close.c' object='test/run_tests-test-tcp-close.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close.obj `if test -f 'test/test-tcp-close.c'; then $(CYGPATH_W) 'test/test-tcp-close.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close.c'; fi`
test/run_tests-test-tcp-close-reset.o: test/test-tcp-close-reset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-reset.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-reset.Tpo -c -o test/run_tests-test-tcp-close-reset.o `test -f 'test/test-tcp-close-reset.c' || echo '$(srcdir)/'`test/test-tcp-close-reset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-reset.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-reset.c' object='test/run_tests-test-tcp-close-reset.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-reset.o `test -f 'test/test-tcp-close-reset.c' || echo '$(srcdir)/'`test/test-tcp-close-reset.c
test/run_tests-test-tcp-close-reset.obj: test/test-tcp-close-reset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-close-reset.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-close-reset.Tpo -c -o test/run_tests-test-tcp-close-reset.obj `if test -f 'test/test-tcp-close-reset.c'; then $(CYGPATH_W) 'test/test-tcp-close-reset.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-reset.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-close-reset.Tpo test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-close-reset.c' object='test/run_tests-test-tcp-close-reset.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-close-reset.obj `if test -f 'test/test-tcp-close-reset.c'; then $(CYGPATH_W) 'test/test-tcp-close-reset.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-close-reset.c'; fi`
test/run_tests-test-tcp-create-socket-early.o: test/test-tcp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-create-socket-early.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Tpo -c -o test/run_tests-test-tcp-create-socket-early.o `test -f 'test/test-tcp-create-socket-early.c' || echo '$(srcdir)/'`test/test-tcp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Tpo test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-create-socket-early.c' object='test/run_tests-test-tcp-create-socket-early.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-create-socket-early.o `test -f 'test/test-tcp-create-socket-early.c' || echo '$(srcdir)/'`test/test-tcp-create-socket-early.c
test/run_tests-test-tcp-create-socket-early.obj: test/test-tcp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-create-socket-early.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Tpo -c -o test/run_tests-test-tcp-create-socket-early.obj `if test -f 'test/test-tcp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-tcp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-create-socket-early.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Tpo test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-create-socket-early.c' object='test/run_tests-test-tcp-create-socket-early.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-create-socket-early.obj `if test -f 'test/test-tcp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-tcp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-create-socket-early.c'; fi`
test/run_tests-test-tcp-connect-error-after-write.o: test/test-tcp-connect-error-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-error-after-write.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Tpo -c -o test/run_tests-test-tcp-connect-error-after-write.o `test -f 'test/test-tcp-connect-error-after-write.c' || echo '$(srcdir)/'`test/test-tcp-connect-error-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-error-after-write.c' object='test/run_tests-test-tcp-connect-error-after-write.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-error-after-write.o `test -f 'test/test-tcp-connect-error-after-write.c' || echo '$(srcdir)/'`test/test-tcp-connect-error-after-write.c
test/run_tests-test-tcp-connect-error-after-write.obj: test/test-tcp-connect-error-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-error-after-write.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Tpo -c -o test/run_tests-test-tcp-connect-error-after-write.obj `if test -f 'test/test-tcp-connect-error-after-write.c'; then $(CYGPATH_W) 'test/test-tcp-connect-error-after-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-error-after-write.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-error-after-write.c' object='test/run_tests-test-tcp-connect-error-after-write.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-error-after-write.obj `if test -f 'test/test-tcp-connect-error-after-write.c'; then $(CYGPATH_W) 'test/test-tcp-connect-error-after-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-error-after-write.c'; fi`
test/run_tests-test-tcp-connect-error.o: test/test-tcp-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-error.Tpo -c -o test/run_tests-test-tcp-connect-error.o `test -f 'test/test-tcp-connect-error.c' || echo '$(srcdir)/'`test/test-tcp-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-error.c' object='test/run_tests-test-tcp-connect-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-error.o `test -f 'test/test-tcp-connect-error.c' || echo '$(srcdir)/'`test/test-tcp-connect-error.c
test/run_tests-test-tcp-connect-error.obj: test/test-tcp-connect-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-error.Tpo -c -o test/run_tests-test-tcp-connect-error.obj `if test -f 'test/test-tcp-connect-error.c'; then $(CYGPATH_W) 'test/test-tcp-connect-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-error.c' object='test/run_tests-test-tcp-connect-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-error.obj `if test -f 'test/test-tcp-connect-error.c'; then $(CYGPATH_W) 'test/test-tcp-connect-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-error.c'; fi`
test/run_tests-test-tcp-connect-timeout.o: test/test-tcp-connect-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-timeout.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Tpo -c -o test/run_tests-test-tcp-connect-timeout.o `test -f 'test/test-tcp-connect-timeout.c' || echo '$(srcdir)/'`test/test-tcp-connect-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-timeout.c' object='test/run_tests-test-tcp-connect-timeout.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-timeout.o `test -f 'test/test-tcp-connect-timeout.c' || echo '$(srcdir)/'`test/test-tcp-connect-timeout.c
test/run_tests-test-tcp-connect-timeout.obj: test/test-tcp-connect-timeout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect-timeout.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Tpo -c -o test/run_tests-test-tcp-connect-timeout.obj `if test -f 'test/test-tcp-connect-timeout.c'; then $(CYGPATH_W) 'test/test-tcp-connect-timeout.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-timeout.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect-timeout.c' object='test/run_tests-test-tcp-connect-timeout.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect-timeout.obj `if test -f 'test/test-tcp-connect-timeout.c'; then $(CYGPATH_W) 'test/test-tcp-connect-timeout.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect-timeout.c'; fi`
test/run_tests-test-tcp-connect6-error.o: test/test-tcp-connect6-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect6-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Tpo -c -o test/run_tests-test-tcp-connect6-error.o `test -f 'test/test-tcp-connect6-error.c' || echo '$(srcdir)/'`test/test-tcp-connect6-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect6-error.c' object='test/run_tests-test-tcp-connect6-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect6-error.o `test -f 'test/test-tcp-connect6-error.c' || echo '$(srcdir)/'`test/test-tcp-connect6-error.c
test/run_tests-test-tcp-connect6-error.obj: test/test-tcp-connect6-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-connect6-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Tpo -c -o test/run_tests-test-tcp-connect6-error.obj `if test -f 'test/test-tcp-connect6-error.c'; then $(CYGPATH_W) 'test/test-tcp-connect6-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect6-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-connect6-error.c' object='test/run_tests-test-tcp-connect6-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-connect6-error.obj `if test -f 'test/test-tcp-connect6-error.c'; then $(CYGPATH_W) 'test/test-tcp-connect6-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-connect6-error.c'; fi`
test/run_tests-test-tcp-flags.o: test/test-tcp-flags.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-flags.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-flags.Tpo -c -o test/run_tests-test-tcp-flags.o `test -f 'test/test-tcp-flags.c' || echo '$(srcdir)/'`test/test-tcp-flags.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-flags.Tpo test/$(DEPDIR)/run_tests-test-tcp-flags.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-flags.c' object='test/run_tests-test-tcp-flags.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-flags.o `test -f 'test/test-tcp-flags.c' || echo '$(srcdir)/'`test/test-tcp-flags.c
test/run_tests-test-tcp-flags.obj: test/test-tcp-flags.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-flags.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-flags.Tpo -c -o test/run_tests-test-tcp-flags.obj `if test -f 'test/test-tcp-flags.c'; then $(CYGPATH_W) 'test/test-tcp-flags.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-flags.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-flags.Tpo test/$(DEPDIR)/run_tests-test-tcp-flags.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-flags.c' object='test/run_tests-test-tcp-flags.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-flags.obj `if test -f 'test/test-tcp-flags.c'; then $(CYGPATH_W) 'test/test-tcp-flags.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-flags.c'; fi`
test/run_tests-test-tcp-open.o: test/test-tcp-open.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-open.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-open.Tpo -c -o test/run_tests-test-tcp-open.o `test -f 'test/test-tcp-open.c' || echo '$(srcdir)/'`test/test-tcp-open.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-open.Tpo test/$(DEPDIR)/run_tests-test-tcp-open.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-open.c' object='test/run_tests-test-tcp-open.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-open.o `test -f 'test/test-tcp-open.c' || echo '$(srcdir)/'`test/test-tcp-open.c
test/run_tests-test-tcp-open.obj: test/test-tcp-open.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-open.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-open.Tpo -c -o test/run_tests-test-tcp-open.obj `if test -f 'test/test-tcp-open.c'; then $(CYGPATH_W) 'test/test-tcp-open.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-open.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-open.Tpo test/$(DEPDIR)/run_tests-test-tcp-open.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-open.c' object='test/run_tests-test-tcp-open.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-open.obj `if test -f 'test/test-tcp-open.c'; then $(CYGPATH_W) 'test/test-tcp-open.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-open.c'; fi`
test/run_tests-test-tcp-read-stop.o: test/test-tcp-read-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-read-stop.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-read-stop.Tpo -c -o test/run_tests-test-tcp-read-stop.o `test -f 'test/test-tcp-read-stop.c' || echo '$(srcdir)/'`test/test-tcp-read-stop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-read-stop.Tpo test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-read-stop.c' object='test/run_tests-test-tcp-read-stop.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-read-stop.o `test -f 'test/test-tcp-read-stop.c' || echo '$(srcdir)/'`test/test-tcp-read-stop.c
test/run_tests-test-tcp-read-stop.obj: test/test-tcp-read-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-read-stop.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-read-stop.Tpo -c -o test/run_tests-test-tcp-read-stop.obj `if test -f 'test/test-tcp-read-stop.c'; then $(CYGPATH_W) 'test/test-tcp-read-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-read-stop.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-read-stop.Tpo test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-read-stop.c' object='test/run_tests-test-tcp-read-stop.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-read-stop.obj `if test -f 'test/test-tcp-read-stop.c'; then $(CYGPATH_W) 'test/test-tcp-read-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-read-stop.c'; fi`
test/run_tests-test-tcp-read-stop-start.o: test/test-tcp-read-stop-start.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-read-stop-start.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Tpo -c -o test/run_tests-test-tcp-read-stop-start.o `test -f 'test/test-tcp-read-stop-start.c' || echo '$(srcdir)/'`test/test-tcp-read-stop-start.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Tpo test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-read-stop-start.c' object='test/run_tests-test-tcp-read-stop-start.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-read-stop-start.o `test -f 'test/test-tcp-read-stop-start.c' || echo '$(srcdir)/'`test/test-tcp-read-stop-start.c
test/run_tests-test-tcp-read-stop-start.obj: test/test-tcp-read-stop-start.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-read-stop-start.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Tpo -c -o test/run_tests-test-tcp-read-stop-start.obj `if test -f 'test/test-tcp-read-stop-start.c'; then $(CYGPATH_W) 'test/test-tcp-read-stop-start.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-read-stop-start.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Tpo test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-read-stop-start.c' object='test/run_tests-test-tcp-read-stop-start.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-read-stop-start.obj `if test -f 'test/test-tcp-read-stop-start.c'; then $(CYGPATH_W) 'test/test-tcp-read-stop-start.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-read-stop-start.c'; fi`
test/run_tests-test-tcp-rst.o: test/test-tcp-rst.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-rst.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-rst.Tpo -c -o test/run_tests-test-tcp-rst.o `test -f 'test/test-tcp-rst.c' || echo '$(srcdir)/'`test/test-tcp-rst.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-rst.Tpo test/$(DEPDIR)/run_tests-test-tcp-rst.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-rst.c' object='test/run_tests-test-tcp-rst.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-rst.o `test -f 'test/test-tcp-rst.c' || echo '$(srcdir)/'`test/test-tcp-rst.c
test/run_tests-test-tcp-rst.obj: test/test-tcp-rst.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-rst.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-rst.Tpo -c -o test/run_tests-test-tcp-rst.obj `if test -f 'test/test-tcp-rst.c'; then $(CYGPATH_W) 'test/test-tcp-rst.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-rst.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-rst.Tpo test/$(DEPDIR)/run_tests-test-tcp-rst.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-rst.c' object='test/run_tests-test-tcp-rst.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-rst.obj `if test -f 'test/test-tcp-rst.c'; then $(CYGPATH_W) 'test/test-tcp-rst.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-rst.c'; fi`
test/run_tests-test-tcp-shutdown-after-write.o: test/test-tcp-shutdown-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-shutdown-after-write.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Tpo -c -o test/run_tests-test-tcp-shutdown-after-write.o `test -f 'test/test-tcp-shutdown-after-write.c' || echo '$(srcdir)/'`test/test-tcp-shutdown-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-shutdown-after-write.c' object='test/run_tests-test-tcp-shutdown-after-write.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-shutdown-after-write.o `test -f 'test/test-tcp-shutdown-after-write.c' || echo '$(srcdir)/'`test/test-tcp-shutdown-after-write.c
test/run_tests-test-tcp-shutdown-after-write.obj: test/test-tcp-shutdown-after-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-shutdown-after-write.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Tpo -c -o test/run_tests-test-tcp-shutdown-after-write.obj `if test -f 'test/test-tcp-shutdown-after-write.c'; then $(CYGPATH_W) 'test/test-tcp-shutdown-after-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-shutdown-after-write.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-shutdown-after-write.c' object='test/run_tests-test-tcp-shutdown-after-write.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-shutdown-after-write.obj `if test -f 'test/test-tcp-shutdown-after-write.c'; then $(CYGPATH_W) 'test/test-tcp-shutdown-after-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-shutdown-after-write.c'; fi`
test/run_tests-test-tcp-unexpected-read.o: test/test-tcp-unexpected-read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-unexpected-read.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Tpo -c -o test/run_tests-test-tcp-unexpected-read.o `test -f 'test/test-tcp-unexpected-read.c' || echo '$(srcdir)/'`test/test-tcp-unexpected-read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Tpo test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-unexpected-read.c' object='test/run_tests-test-tcp-unexpected-read.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-unexpected-read.o `test -f 'test/test-tcp-unexpected-read.c' || echo '$(srcdir)/'`test/test-tcp-unexpected-read.c
test/run_tests-test-tcp-unexpected-read.obj: test/test-tcp-unexpected-read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-unexpected-read.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Tpo -c -o test/run_tests-test-tcp-unexpected-read.obj `if test -f 'test/test-tcp-unexpected-read.c'; then $(CYGPATH_W) 'test/test-tcp-unexpected-read.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-unexpected-read.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Tpo test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-unexpected-read.c' object='test/run_tests-test-tcp-unexpected-read.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-unexpected-read.obj `if test -f 'test/test-tcp-unexpected-read.c'; then $(CYGPATH_W) 'test/test-tcp-unexpected-read.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-unexpected-read.c'; fi`
test/run_tests-test-tcp-oob.o: test/test-tcp-oob.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-oob.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-oob.Tpo -c -o test/run_tests-test-tcp-oob.o `test -f 'test/test-tcp-oob.c' || echo '$(srcdir)/'`test/test-tcp-oob.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-oob.Tpo test/$(DEPDIR)/run_tests-test-tcp-oob.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-oob.c' object='test/run_tests-test-tcp-oob.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-oob.o `test -f 'test/test-tcp-oob.c' || echo '$(srcdir)/'`test/test-tcp-oob.c
test/run_tests-test-tcp-oob.obj: test/test-tcp-oob.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-oob.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-oob.Tpo -c -o test/run_tests-test-tcp-oob.obj `if test -f 'test/test-tcp-oob.c'; then $(CYGPATH_W) 'test/test-tcp-oob.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-oob.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-oob.Tpo test/$(DEPDIR)/run_tests-test-tcp-oob.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-oob.c' object='test/run_tests-test-tcp-oob.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-oob.obj `if test -f 'test/test-tcp-oob.c'; then $(CYGPATH_W) 'test/test-tcp-oob.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-oob.c'; fi`
test/run_tests-test-tcp-write-to-half-open-connection.o: test/test-tcp-write-to-half-open-connection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-to-half-open-connection.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Tpo -c -o test/run_tests-test-tcp-write-to-half-open-connection.o `test -f 'test/test-tcp-write-to-half-open-connection.c' || echo '$(srcdir)/'`test/test-tcp-write-to-half-open-connection.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-to-half-open-connection.c' object='test/run_tests-test-tcp-write-to-half-open-connection.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-to-half-open-connection.o `test -f 'test/test-tcp-write-to-half-open-connection.c' || echo '$(srcdir)/'`test/test-tcp-write-to-half-open-connection.c
test/run_tests-test-tcp-write-to-half-open-connection.obj: test/test-tcp-write-to-half-open-connection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-to-half-open-connection.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Tpo -c -o test/run_tests-test-tcp-write-to-half-open-connection.obj `if test -f 'test/test-tcp-write-to-half-open-connection.c'; then $(CYGPATH_W) 'test/test-tcp-write-to-half-open-connection.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-to-half-open-connection.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-to-half-open-connection.c' object='test/run_tests-test-tcp-write-to-half-open-connection.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-to-half-open-connection.obj `if test -f 'test/test-tcp-write-to-half-open-connection.c'; then $(CYGPATH_W) 'test/test-tcp-write-to-half-open-connection.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-to-half-open-connection.c'; fi`
test/run_tests-test-tcp-write-after-connect.o: test/test-tcp-write-after-connect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-after-connect.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Tpo -c -o test/run_tests-test-tcp-write-after-connect.o `test -f 'test/test-tcp-write-after-connect.c' || echo '$(srcdir)/'`test/test-tcp-write-after-connect.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-after-connect.c' object='test/run_tests-test-tcp-write-after-connect.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-after-connect.o `test -f 'test/test-tcp-write-after-connect.c' || echo '$(srcdir)/'`test/test-tcp-write-after-connect.c
test/run_tests-test-tcp-write-after-connect.obj: test/test-tcp-write-after-connect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-after-connect.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Tpo -c -o test/run_tests-test-tcp-write-after-connect.obj `if test -f 'test/test-tcp-write-after-connect.c'; then $(CYGPATH_W) 'test/test-tcp-write-after-connect.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-after-connect.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-after-connect.c' object='test/run_tests-test-tcp-write-after-connect.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-after-connect.obj `if test -f 'test/test-tcp-write-after-connect.c'; then $(CYGPATH_W) 'test/test-tcp-write-after-connect.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-after-connect.c'; fi`
test/run_tests-test-tcp-writealot.o: test/test-tcp-writealot.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-writealot.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-writealot.Tpo -c -o test/run_tests-test-tcp-writealot.o `test -f 'test/test-tcp-writealot.c' || echo '$(srcdir)/'`test/test-tcp-writealot.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-writealot.Tpo test/$(DEPDIR)/run_tests-test-tcp-writealot.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-writealot.c' object='test/run_tests-test-tcp-writealot.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-writealot.o `test -f 'test/test-tcp-writealot.c' || echo '$(srcdir)/'`test/test-tcp-writealot.c
test/run_tests-test-tcp-writealot.obj: test/test-tcp-writealot.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-writealot.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-writealot.Tpo -c -o test/run_tests-test-tcp-writealot.obj `if test -f 'test/test-tcp-writealot.c'; then $(CYGPATH_W) 'test/test-tcp-writealot.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-writealot.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-writealot.Tpo test/$(DEPDIR)/run_tests-test-tcp-writealot.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-writealot.c' object='test/run_tests-test-tcp-writealot.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-writealot.obj `if test -f 'test/test-tcp-writealot.c'; then $(CYGPATH_W) 'test/test-tcp-writealot.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-writealot.c'; fi`
test/run_tests-test-tcp-write-fail.o: test/test-tcp-write-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-fail.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-fail.Tpo -c -o test/run_tests-test-tcp-write-fail.o `test -f 'test/test-tcp-write-fail.c' || echo '$(srcdir)/'`test/test-tcp-write-fail.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-fail.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-fail.c' object='test/run_tests-test-tcp-write-fail.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-fail.o `test -f 'test/test-tcp-write-fail.c' || echo '$(srcdir)/'`test/test-tcp-write-fail.c
test/run_tests-test-tcp-write-fail.obj: test/test-tcp-write-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-fail.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-fail.Tpo -c -o test/run_tests-test-tcp-write-fail.obj `if test -f 'test/test-tcp-write-fail.c'; then $(CYGPATH_W) 'test/test-tcp-write-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-fail.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-fail.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-fail.c' object='test/run_tests-test-tcp-write-fail.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-fail.obj `if test -f 'test/test-tcp-write-fail.c'; then $(CYGPATH_W) 'test/test-tcp-write-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-fail.c'; fi`
test/run_tests-test-tcp-try-write.o: test/test-tcp-try-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-try-write.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-try-write.Tpo -c -o test/run_tests-test-tcp-try-write.o `test -f 'test/test-tcp-try-write.c' || echo '$(srcdir)/'`test/test-tcp-try-write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-try-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-try-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-try-write.c' object='test/run_tests-test-tcp-try-write.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-try-write.o `test -f 'test/test-tcp-try-write.c' || echo '$(srcdir)/'`test/test-tcp-try-write.c
test/run_tests-test-tcp-try-write.obj: test/test-tcp-try-write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-try-write.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-try-write.Tpo -c -o test/run_tests-test-tcp-try-write.obj `if test -f 'test/test-tcp-try-write.c'; then $(CYGPATH_W) 'test/test-tcp-try-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-try-write.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-try-write.Tpo test/$(DEPDIR)/run_tests-test-tcp-try-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-try-write.c' object='test/run_tests-test-tcp-try-write.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-try-write.obj `if test -f 'test/test-tcp-try-write.c'; then $(CYGPATH_W) 'test/test-tcp-try-write.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-try-write.c'; fi`
test/run_tests-test-tcp-write-in-a-row.o: test/test-tcp-write-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-in-a-row.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Tpo -c -o test/run_tests-test-tcp-write-in-a-row.o `test -f 'test/test-tcp-write-in-a-row.c' || echo '$(srcdir)/'`test/test-tcp-write-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-in-a-row.c' object='test/run_tests-test-tcp-write-in-a-row.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-in-a-row.o `test -f 'test/test-tcp-write-in-a-row.c' || echo '$(srcdir)/'`test/test-tcp-write-in-a-row.c
test/run_tests-test-tcp-write-in-a-row.obj: test/test-tcp-write-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-in-a-row.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Tpo -c -o test/run_tests-test-tcp-write-in-a-row.obj `if test -f 'test/test-tcp-write-in-a-row.c'; then $(CYGPATH_W) 'test/test-tcp-write-in-a-row.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-in-a-row.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-in-a-row.c' object='test/run_tests-test-tcp-write-in-a-row.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-in-a-row.obj `if test -f 'test/test-tcp-write-in-a-row.c'; then $(CYGPATH_W) 'test/test-tcp-write-in-a-row.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-in-a-row.c'; fi`
test/run_tests-test-tcp-try-write-error.o: test/test-tcp-try-write-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-try-write-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Tpo -c -o test/run_tests-test-tcp-try-write-error.o `test -f 'test/test-tcp-try-write-error.c' || echo '$(srcdir)/'`test/test-tcp-try-write-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-try-write-error.c' object='test/run_tests-test-tcp-try-write-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-try-write-error.o `test -f 'test/test-tcp-try-write-error.c' || echo '$(srcdir)/'`test/test-tcp-try-write-error.c
test/run_tests-test-tcp-try-write-error.obj: test/test-tcp-try-write-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-try-write-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Tpo -c -o test/run_tests-test-tcp-try-write-error.obj `if test -f 'test/test-tcp-try-write-error.c'; then $(CYGPATH_W) 'test/test-tcp-try-write-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-try-write-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Tpo test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-try-write-error.c' object='test/run_tests-test-tcp-try-write-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-try-write-error.obj `if test -f 'test/test-tcp-try-write-error.c'; then $(CYGPATH_W) 'test/test-tcp-try-write-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-try-write-error.c'; fi`
test/run_tests-test-tcp-write-queue-order.o: test/test-tcp-write-queue-order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-queue-order.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Tpo -c -o test/run_tests-test-tcp-write-queue-order.o `test -f 'test/test-tcp-write-queue-order.c' || echo '$(srcdir)/'`test/test-tcp-write-queue-order.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-queue-order.c' object='test/run_tests-test-tcp-write-queue-order.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-queue-order.o `test -f 'test/test-tcp-write-queue-order.c' || echo '$(srcdir)/'`test/test-tcp-write-queue-order.c
test/run_tests-test-tcp-write-queue-order.obj: test/test-tcp-write-queue-order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tcp-write-queue-order.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Tpo -c -o test/run_tests-test-tcp-write-queue-order.obj `if test -f 'test/test-tcp-write-queue-order.c'; then $(CYGPATH_W) 'test/test-tcp-write-queue-order.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-queue-order.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Tpo test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tcp-write-queue-order.c' object='test/run_tests-test-tcp-write-queue-order.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tcp-write-queue-order.obj `if test -f 'test/test-tcp-write-queue-order.c'; then $(CYGPATH_W) 'test/test-tcp-write-queue-order.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tcp-write-queue-order.c'; fi`
test/run_tests-test-test-macros.o: test/test-test-macros.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-test-macros.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-test-macros.Tpo -c -o test/run_tests-test-test-macros.o `test -f 'test/test-test-macros.c' || echo '$(srcdir)/'`test/test-test-macros.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-test-macros.Tpo test/$(DEPDIR)/run_tests-test-test-macros.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-test-macros.c' object='test/run_tests-test-test-macros.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-test-macros.o `test -f 'test/test-test-macros.c' || echo '$(srcdir)/'`test/test-test-macros.c
test/run_tests-test-test-macros.obj: test/test-test-macros.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-test-macros.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-test-macros.Tpo -c -o test/run_tests-test-test-macros.obj `if test -f 'test/test-test-macros.c'; then $(CYGPATH_W) 'test/test-test-macros.c'; else $(CYGPATH_W) '$(srcdir)/test/test-test-macros.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-test-macros.Tpo test/$(DEPDIR)/run_tests-test-test-macros.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-test-macros.c' object='test/run_tests-test-test-macros.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-test-macros.obj `if test -f 'test/test-test-macros.c'; then $(CYGPATH_W) 'test/test-test-macros.c'; else $(CYGPATH_W) '$(srcdir)/test/test-test-macros.c'; fi`
test/run_tests-test-thread-equal.o: test/test-thread-equal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-equal.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-equal.Tpo -c -o test/run_tests-test-thread-equal.o `test -f 'test/test-thread-equal.c' || echo '$(srcdir)/'`test/test-thread-equal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-equal.Tpo test/$(DEPDIR)/run_tests-test-thread-equal.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-equal.c' object='test/run_tests-test-thread-equal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-equal.o `test -f 'test/test-thread-equal.c' || echo '$(srcdir)/'`test/test-thread-equal.c
test/run_tests-test-thread-equal.obj: test/test-thread-equal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-equal.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-equal.Tpo -c -o test/run_tests-test-thread-equal.obj `if test -f 'test/test-thread-equal.c'; then $(CYGPATH_W) 'test/test-thread-equal.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-equal.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-equal.Tpo test/$(DEPDIR)/run_tests-test-thread-equal.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-equal.c' object='test/run_tests-test-thread-equal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-equal.obj `if test -f 'test/test-thread-equal.c'; then $(CYGPATH_W) 'test/test-thread-equal.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-equal.c'; fi`
test/run_tests-test-thread.o: test/test-thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread.Tpo -c -o test/run_tests-test-thread.o `test -f 'test/test-thread.c' || echo '$(srcdir)/'`test/test-thread.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread.Tpo test/$(DEPDIR)/run_tests-test-thread.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread.c' object='test/run_tests-test-thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread.o `test -f 'test/test-thread.c' || echo '$(srcdir)/'`test/test-thread.c
test/run_tests-test-thread.obj: test/test-thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread.Tpo -c -o test/run_tests-test-thread.obj `if test -f 'test/test-thread.c'; then $(CYGPATH_W) 'test/test-thread.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread.Tpo test/$(DEPDIR)/run_tests-test-thread.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread.c' object='test/run_tests-test-thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread.obj `if test -f 'test/test-thread.c'; then $(CYGPATH_W) 'test/test-thread.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread.c'; fi`
test/run_tests-test-thread-affinity.o: test/test-thread-affinity.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-affinity.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-affinity.Tpo -c -o test/run_tests-test-thread-affinity.o `test -f 'test/test-thread-affinity.c' || echo '$(srcdir)/'`test/test-thread-affinity.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-affinity.Tpo test/$(DEPDIR)/run_tests-test-thread-affinity.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-affinity.c' object='test/run_tests-test-thread-affinity.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-affinity.o `test -f 'test/test-thread-affinity.c' || echo '$(srcdir)/'`test/test-thread-affinity.c
test/run_tests-test-thread-affinity.obj: test/test-thread-affinity.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-affinity.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-affinity.Tpo -c -o test/run_tests-test-thread-affinity.obj `if test -f 'test/test-thread-affinity.c'; then $(CYGPATH_W) 'test/test-thread-affinity.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-affinity.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-affinity.Tpo test/$(DEPDIR)/run_tests-test-thread-affinity.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-affinity.c' object='test/run_tests-test-thread-affinity.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-affinity.obj `if test -f 'test/test-thread-affinity.c'; then $(CYGPATH_W) 'test/test-thread-affinity.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-affinity.c'; fi`
test/run_tests-test-thread-priority.o: test/test-thread-priority.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-priority.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-priority.Tpo -c -o test/run_tests-test-thread-priority.o `test -f 'test/test-thread-priority.c' || echo '$(srcdir)/'`test/test-thread-priority.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-priority.Tpo test/$(DEPDIR)/run_tests-test-thread-priority.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-priority.c' object='test/run_tests-test-thread-priority.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-priority.o `test -f 'test/test-thread-priority.c' || echo '$(srcdir)/'`test/test-thread-priority.c
test/run_tests-test-thread-priority.obj: test/test-thread-priority.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-thread-priority.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-thread-priority.Tpo -c -o test/run_tests-test-thread-priority.obj `if test -f 'test/test-thread-priority.c'; then $(CYGPATH_W) 'test/test-thread-priority.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-priority.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-thread-priority.Tpo test/$(DEPDIR)/run_tests-test-thread-priority.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-thread-priority.c' object='test/run_tests-test-thread-priority.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-thread-priority.obj `if test -f 'test/test-thread-priority.c'; then $(CYGPATH_W) 'test/test-thread-priority.c'; else $(CYGPATH_W) '$(srcdir)/test/test-thread-priority.c'; fi`
test/run_tests-test-threadpool-cancel.o: test/test-threadpool-cancel.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-threadpool-cancel.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-threadpool-cancel.Tpo -c -o test/run_tests-test-threadpool-cancel.o `test -f 'test/test-threadpool-cancel.c' || echo '$(srcdir)/'`test/test-threadpool-cancel.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-threadpool-cancel.Tpo test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-threadpool-cancel.c' object='test/run_tests-test-threadpool-cancel.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-threadpool-cancel.o `test -f 'test/test-threadpool-cancel.c' || echo '$(srcdir)/'`test/test-threadpool-cancel.c
test/run_tests-test-threadpool-cancel.obj: test/test-threadpool-cancel.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-threadpool-cancel.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-threadpool-cancel.Tpo -c -o test/run_tests-test-threadpool-cancel.obj `if test -f 'test/test-threadpool-cancel.c'; then $(CYGPATH_W) 'test/test-threadpool-cancel.c'; else $(CYGPATH_W) '$(srcdir)/test/test-threadpool-cancel.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-threadpool-cancel.Tpo test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-threadpool-cancel.c' object='test/run_tests-test-threadpool-cancel.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-threadpool-cancel.obj `if test -f 'test/test-threadpool-cancel.c'; then $(CYGPATH_W) 'test/test-threadpool-cancel.c'; else $(CYGPATH_W) '$(srcdir)/test/test-threadpool-cancel.c'; fi`
test/run_tests-test-threadpool.o: test/test-threadpool.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-threadpool.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-threadpool.Tpo -c -o test/run_tests-test-threadpool.o `test -f 'test/test-threadpool.c' || echo '$(srcdir)/'`test/test-threadpool.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-threadpool.Tpo test/$(DEPDIR)/run_tests-test-threadpool.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-threadpool.c' object='test/run_tests-test-threadpool.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-threadpool.o `test -f 'test/test-threadpool.c' || echo '$(srcdir)/'`test/test-threadpool.c
test/run_tests-test-threadpool.obj: test/test-threadpool.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-threadpool.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-threadpool.Tpo -c -o test/run_tests-test-threadpool.obj `if test -f 'test/test-threadpool.c'; then $(CYGPATH_W) 'test/test-threadpool.c'; else $(CYGPATH_W) '$(srcdir)/test/test-threadpool.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-threadpool.Tpo test/$(DEPDIR)/run_tests-test-threadpool.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-threadpool.c' object='test/run_tests-test-threadpool.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-threadpool.obj `if test -f 'test/test-threadpool.c'; then $(CYGPATH_W) 'test/test-threadpool.c'; else $(CYGPATH_W) '$(srcdir)/test/test-threadpool.c'; fi`
test/run_tests-test-timer-again.o: test/test-timer-again.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer-again.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer-again.Tpo -c -o test/run_tests-test-timer-again.o `test -f 'test/test-timer-again.c' || echo '$(srcdir)/'`test/test-timer-again.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer-again.Tpo test/$(DEPDIR)/run_tests-test-timer-again.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer-again.c' object='test/run_tests-test-timer-again.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer-again.o `test -f 'test/test-timer-again.c' || echo '$(srcdir)/'`test/test-timer-again.c
test/run_tests-test-timer-again.obj: test/test-timer-again.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer-again.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer-again.Tpo -c -o test/run_tests-test-timer-again.obj `if test -f 'test/test-timer-again.c'; then $(CYGPATH_W) 'test/test-timer-again.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer-again.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer-again.Tpo test/$(DEPDIR)/run_tests-test-timer-again.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer-again.c' object='test/run_tests-test-timer-again.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer-again.obj `if test -f 'test/test-timer-again.c'; then $(CYGPATH_W) 'test/test-timer-again.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer-again.c'; fi`
test/run_tests-test-timer-from-check.o: test/test-timer-from-check.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer-from-check.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer-from-check.Tpo -c -o test/run_tests-test-timer-from-check.o `test -f 'test/test-timer-from-check.c' || echo '$(srcdir)/'`test/test-timer-from-check.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer-from-check.Tpo test/$(DEPDIR)/run_tests-test-timer-from-check.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer-from-check.c' object='test/run_tests-test-timer-from-check.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer-from-check.o `test -f 'test/test-timer-from-check.c' || echo '$(srcdir)/'`test/test-timer-from-check.c
test/run_tests-test-timer-from-check.obj: test/test-timer-from-check.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer-from-check.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer-from-check.Tpo -c -o test/run_tests-test-timer-from-check.obj `if test -f 'test/test-timer-from-check.c'; then $(CYGPATH_W) 'test/test-timer-from-check.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer-from-check.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer-from-check.Tpo test/$(DEPDIR)/run_tests-test-timer-from-check.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer-from-check.c' object='test/run_tests-test-timer-from-check.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer-from-check.obj `if test -f 'test/test-timer-from-check.c'; then $(CYGPATH_W) 'test/test-timer-from-check.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer-from-check.c'; fi`
test/run_tests-test-timer.o: test/test-timer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer.Tpo -c -o test/run_tests-test-timer.o `test -f 'test/test-timer.c' || echo '$(srcdir)/'`test/test-timer.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer.Tpo test/$(DEPDIR)/run_tests-test-timer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer.c' object='test/run_tests-test-timer.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer.o `test -f 'test/test-timer.c' || echo '$(srcdir)/'`test/test-timer.c
test/run_tests-test-timer.obj: test/test-timer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-timer.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-timer.Tpo -c -o test/run_tests-test-timer.obj `if test -f 'test/test-timer.c'; then $(CYGPATH_W) 'test/test-timer.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-timer.Tpo test/$(DEPDIR)/run_tests-test-timer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-timer.c' object='test/run_tests-test-timer.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-timer.obj `if test -f 'test/test-timer.c'; then $(CYGPATH_W) 'test/test-timer.c'; else $(CYGPATH_W) '$(srcdir)/test/test-timer.c'; fi`
test/run_tests-test-tmpdir.o: test/test-tmpdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tmpdir.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tmpdir.Tpo -c -o test/run_tests-test-tmpdir.o `test -f 'test/test-tmpdir.c' || echo '$(srcdir)/'`test/test-tmpdir.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tmpdir.Tpo test/$(DEPDIR)/run_tests-test-tmpdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tmpdir.c' object='test/run_tests-test-tmpdir.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tmpdir.o `test -f 'test/test-tmpdir.c' || echo '$(srcdir)/'`test/test-tmpdir.c
test/run_tests-test-tmpdir.obj: test/test-tmpdir.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tmpdir.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tmpdir.Tpo -c -o test/run_tests-test-tmpdir.obj `if test -f 'test/test-tmpdir.c'; then $(CYGPATH_W) 'test/test-tmpdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tmpdir.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tmpdir.Tpo test/$(DEPDIR)/run_tests-test-tmpdir.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tmpdir.c' object='test/run_tests-test-tmpdir.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tmpdir.obj `if test -f 'test/test-tmpdir.c'; then $(CYGPATH_W) 'test/test-tmpdir.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tmpdir.c'; fi`
test/run_tests-test-tty-duplicate-key.o: test/test-tty-duplicate-key.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty-duplicate-key.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Tpo -c -o test/run_tests-test-tty-duplicate-key.o `test -f 'test/test-tty-duplicate-key.c' || echo '$(srcdir)/'`test/test-tty-duplicate-key.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Tpo test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty-duplicate-key.c' object='test/run_tests-test-tty-duplicate-key.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty-duplicate-key.o `test -f 'test/test-tty-duplicate-key.c' || echo '$(srcdir)/'`test/test-tty-duplicate-key.c
test/run_tests-test-tty-duplicate-key.obj: test/test-tty-duplicate-key.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty-duplicate-key.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Tpo -c -o test/run_tests-test-tty-duplicate-key.obj `if test -f 'test/test-tty-duplicate-key.c'; then $(CYGPATH_W) 'test/test-tty-duplicate-key.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty-duplicate-key.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Tpo test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty-duplicate-key.c' object='test/run_tests-test-tty-duplicate-key.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty-duplicate-key.obj `if test -f 'test/test-tty-duplicate-key.c'; then $(CYGPATH_W) 'test/test-tty-duplicate-key.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty-duplicate-key.c'; fi`
test/run_tests-test-tty-escape-sequence-processing.o: test/test-tty-escape-sequence-processing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty-escape-sequence-processing.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Tpo -c -o test/run_tests-test-tty-escape-sequence-processing.o `test -f 'test/test-tty-escape-sequence-processing.c' || echo '$(srcdir)/'`test/test-tty-escape-sequence-processing.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Tpo test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty-escape-sequence-processing.c' object='test/run_tests-test-tty-escape-sequence-processing.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty-escape-sequence-processing.o `test -f 'test/test-tty-escape-sequence-processing.c' || echo '$(srcdir)/'`test/test-tty-escape-sequence-processing.c
test/run_tests-test-tty-escape-sequence-processing.obj: test/test-tty-escape-sequence-processing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty-escape-sequence-processing.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Tpo -c -o test/run_tests-test-tty-escape-sequence-processing.obj `if test -f 'test/test-tty-escape-sequence-processing.c'; then $(CYGPATH_W) 'test/test-tty-escape-sequence-processing.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty-escape-sequence-processing.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Tpo test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty-escape-sequence-processing.c' object='test/run_tests-test-tty-escape-sequence-processing.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty-escape-sequence-processing.obj `if test -f 'test/test-tty-escape-sequence-processing.c'; then $(CYGPATH_W) 'test/test-tty-escape-sequence-processing.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty-escape-sequence-processing.c'; fi`
test/run_tests-test-tty.o: test/test-tty.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty.Tpo -c -o test/run_tests-test-tty.o `test -f 'test/test-tty.c' || echo '$(srcdir)/'`test/test-tty.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty.Tpo test/$(DEPDIR)/run_tests-test-tty.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty.c' object='test/run_tests-test-tty.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty.o `test -f 'test/test-tty.c' || echo '$(srcdir)/'`test/test-tty.c
test/run_tests-test-tty.obj: test/test-tty.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-tty.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-tty.Tpo -c -o test/run_tests-test-tty.obj `if test -f 'test/test-tty.c'; then $(CYGPATH_W) 'test/test-tty.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-tty.Tpo test/$(DEPDIR)/run_tests-test-tty.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-tty.c' object='test/run_tests-test-tty.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-tty.obj `if test -f 'test/test-tty.c'; then $(CYGPATH_W) 'test/test-tty.c'; else $(CYGPATH_W) '$(srcdir)/test/test-tty.c'; fi`
test/run_tests-test-udp-alloc-cb-fail.o: test/test-udp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-alloc-cb-fail.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Tpo -c -o test/run_tests-test-udp-alloc-cb-fail.o `test -f 'test/test-udp-alloc-cb-fail.c' || echo '$(srcdir)/'`test/test-udp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Tpo test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-alloc-cb-fail.c' object='test/run_tests-test-udp-alloc-cb-fail.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-alloc-cb-fail.o `test -f 'test/test-udp-alloc-cb-fail.c' || echo '$(srcdir)/'`test/test-udp-alloc-cb-fail.c
test/run_tests-test-udp-alloc-cb-fail.obj: test/test-udp-alloc-cb-fail.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-alloc-cb-fail.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Tpo -c -o test/run_tests-test-udp-alloc-cb-fail.obj `if test -f 'test/test-udp-alloc-cb-fail.c'; then $(CYGPATH_W) 'test/test-udp-alloc-cb-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-alloc-cb-fail.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Tpo test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-alloc-cb-fail.c' object='test/run_tests-test-udp-alloc-cb-fail.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-alloc-cb-fail.obj `if test -f 'test/test-udp-alloc-cb-fail.c'; then $(CYGPATH_W) 'test/test-udp-alloc-cb-fail.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-alloc-cb-fail.c'; fi`
test/run_tests-test-udp-bind.o: test/test-udp-bind.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-bind.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-bind.Tpo -c -o test/run_tests-test-udp-bind.o `test -f 'test/test-udp-bind.c' || echo '$(srcdir)/'`test/test-udp-bind.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-bind.Tpo test/$(DEPDIR)/run_tests-test-udp-bind.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-bind.c' object='test/run_tests-test-udp-bind.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-bind.o `test -f 'test/test-udp-bind.c' || echo '$(srcdir)/'`test/test-udp-bind.c
test/run_tests-test-udp-bind.obj: test/test-udp-bind.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-bind.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-bind.Tpo -c -o test/run_tests-test-udp-bind.obj `if test -f 'test/test-udp-bind.c'; then $(CYGPATH_W) 'test/test-udp-bind.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-bind.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-bind.Tpo test/$(DEPDIR)/run_tests-test-udp-bind.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-bind.c' object='test/run_tests-test-udp-bind.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-bind.obj `if test -f 'test/test-udp-bind.c'; then $(CYGPATH_W) 'test/test-udp-bind.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-bind.c'; fi`
test/run_tests-test-udp-connect.o: test/test-udp-connect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-connect.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-connect.Tpo -c -o test/run_tests-test-udp-connect.o `test -f 'test/test-udp-connect.c' || echo '$(srcdir)/'`test/test-udp-connect.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-connect.Tpo test/$(DEPDIR)/run_tests-test-udp-connect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-connect.c' object='test/run_tests-test-udp-connect.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-connect.o `test -f 'test/test-udp-connect.c' || echo '$(srcdir)/'`test/test-udp-connect.c
test/run_tests-test-udp-connect.obj: test/test-udp-connect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-connect.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-connect.Tpo -c -o test/run_tests-test-udp-connect.obj `if test -f 'test/test-udp-connect.c'; then $(CYGPATH_W) 'test/test-udp-connect.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-connect.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-connect.Tpo test/$(DEPDIR)/run_tests-test-udp-connect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-connect.c' object='test/run_tests-test-udp-connect.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-connect.obj `if test -f 'test/test-udp-connect.c'; then $(CYGPATH_W) 'test/test-udp-connect.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-connect.c'; fi`
test/run_tests-test-udp-connect6.o: test/test-udp-connect6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-connect6.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-connect6.Tpo -c -o test/run_tests-test-udp-connect6.o `test -f 'test/test-udp-connect6.c' || echo '$(srcdir)/'`test/test-udp-connect6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-connect6.Tpo test/$(DEPDIR)/run_tests-test-udp-connect6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-connect6.c' object='test/run_tests-test-udp-connect6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-connect6.o `test -f 'test/test-udp-connect6.c' || echo '$(srcdir)/'`test/test-udp-connect6.c
test/run_tests-test-udp-connect6.obj: test/test-udp-connect6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-connect6.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-connect6.Tpo -c -o test/run_tests-test-udp-connect6.obj `if test -f 'test/test-udp-connect6.c'; then $(CYGPATH_W) 'test/test-udp-connect6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-connect6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-connect6.Tpo test/$(DEPDIR)/run_tests-test-udp-connect6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-connect6.c' object='test/run_tests-test-udp-connect6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-connect6.obj `if test -f 'test/test-udp-connect6.c'; then $(CYGPATH_W) 'test/test-udp-connect6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-connect6.c'; fi`
test/run_tests-test-udp-create-socket-early.o: test/test-udp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-create-socket-early.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Tpo -c -o test/run_tests-test-udp-create-socket-early.o `test -f 'test/test-udp-create-socket-early.c' || echo '$(srcdir)/'`test/test-udp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Tpo test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-create-socket-early.c' object='test/run_tests-test-udp-create-socket-early.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-create-socket-early.o `test -f 'test/test-udp-create-socket-early.c' || echo '$(srcdir)/'`test/test-udp-create-socket-early.c
test/run_tests-test-udp-create-socket-early.obj: test/test-udp-create-socket-early.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-create-socket-early.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Tpo -c -o test/run_tests-test-udp-create-socket-early.obj `if test -f 'test/test-udp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-udp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-create-socket-early.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Tpo test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-create-socket-early.c' object='test/run_tests-test-udp-create-socket-early.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-create-socket-early.obj `if test -f 'test/test-udp-create-socket-early.c'; then $(CYGPATH_W) 'test/test-udp-create-socket-early.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-create-socket-early.c'; fi`
test/run_tests-test-udp-dgram-too-big.o: test/test-udp-dgram-too-big.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-dgram-too-big.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Tpo -c -o test/run_tests-test-udp-dgram-too-big.o `test -f 'test/test-udp-dgram-too-big.c' || echo '$(srcdir)/'`test/test-udp-dgram-too-big.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Tpo test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-dgram-too-big.c' object='test/run_tests-test-udp-dgram-too-big.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-dgram-too-big.o `test -f 'test/test-udp-dgram-too-big.c' || echo '$(srcdir)/'`test/test-udp-dgram-too-big.c
test/run_tests-test-udp-dgram-too-big.obj: test/test-udp-dgram-too-big.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-dgram-too-big.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Tpo -c -o test/run_tests-test-udp-dgram-too-big.obj `if test -f 'test/test-udp-dgram-too-big.c'; then $(CYGPATH_W) 'test/test-udp-dgram-too-big.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-dgram-too-big.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Tpo test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-dgram-too-big.c' object='test/run_tests-test-udp-dgram-too-big.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-dgram-too-big.obj `if test -f 'test/test-udp-dgram-too-big.c'; then $(CYGPATH_W) 'test/test-udp-dgram-too-big.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-dgram-too-big.c'; fi`
test/run_tests-test-udp-ipv6.o: test/test-udp-ipv6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-ipv6.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-ipv6.Tpo -c -o test/run_tests-test-udp-ipv6.o `test -f 'test/test-udp-ipv6.c' || echo '$(srcdir)/'`test/test-udp-ipv6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-ipv6.Tpo test/$(DEPDIR)/run_tests-test-udp-ipv6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-ipv6.c' object='test/run_tests-test-udp-ipv6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-ipv6.o `test -f 'test/test-udp-ipv6.c' || echo '$(srcdir)/'`test/test-udp-ipv6.c
test/run_tests-test-udp-ipv6.obj: test/test-udp-ipv6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-ipv6.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-ipv6.Tpo -c -o test/run_tests-test-udp-ipv6.obj `if test -f 'test/test-udp-ipv6.c'; then $(CYGPATH_W) 'test/test-udp-ipv6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-ipv6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-ipv6.Tpo test/$(DEPDIR)/run_tests-test-udp-ipv6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-ipv6.c' object='test/run_tests-test-udp-ipv6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-ipv6.obj `if test -f 'test/test-udp-ipv6.c'; then $(CYGPATH_W) 'test/test-udp-ipv6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-ipv6.c'; fi`
test/run_tests-test-udp-mmsg.o: test/test-udp-mmsg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-mmsg.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-mmsg.Tpo -c -o test/run_tests-test-udp-mmsg.o `test -f 'test/test-udp-mmsg.c' || echo '$(srcdir)/'`test/test-udp-mmsg.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-mmsg.Tpo test/$(DEPDIR)/run_tests-test-udp-mmsg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-mmsg.c' object='test/run_tests-test-udp-mmsg.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-mmsg.o `test -f 'test/test-udp-mmsg.c' || echo '$(srcdir)/'`test/test-udp-mmsg.c
test/run_tests-test-udp-mmsg.obj: test/test-udp-mmsg.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-mmsg.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-mmsg.Tpo -c -o test/run_tests-test-udp-mmsg.obj `if test -f 'test/test-udp-mmsg.c'; then $(CYGPATH_W) 'test/test-udp-mmsg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-mmsg.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-mmsg.Tpo test/$(DEPDIR)/run_tests-test-udp-mmsg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-mmsg.c' object='test/run_tests-test-udp-mmsg.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-mmsg.obj `if test -f 'test/test-udp-mmsg.c'; then $(CYGPATH_W) 'test/test-udp-mmsg.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-mmsg.c'; fi`
test/run_tests-test-udp-multicast-interface.o: test/test-udp-multicast-interface.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-interface.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Tpo -c -o test/run_tests-test-udp-multicast-interface.o `test -f 'test/test-udp-multicast-interface.c' || echo '$(srcdir)/'`test/test-udp-multicast-interface.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-interface.c' object='test/run_tests-test-udp-multicast-interface.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-interface.o `test -f 'test/test-udp-multicast-interface.c' || echo '$(srcdir)/'`test/test-udp-multicast-interface.c
test/run_tests-test-udp-multicast-interface.obj: test/test-udp-multicast-interface.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-interface.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Tpo -c -o test/run_tests-test-udp-multicast-interface.obj `if test -f 'test/test-udp-multicast-interface.c'; then $(CYGPATH_W) 'test/test-udp-multicast-interface.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-interface.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-interface.c' object='test/run_tests-test-udp-multicast-interface.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-interface.obj `if test -f 'test/test-udp-multicast-interface.c'; then $(CYGPATH_W) 'test/test-udp-multicast-interface.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-interface.c'; fi`
test/run_tests-test-udp-multicast-interface6.o: test/test-udp-multicast-interface6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-interface6.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Tpo -c -o test/run_tests-test-udp-multicast-interface6.o `test -f 'test/test-udp-multicast-interface6.c' || echo '$(srcdir)/'`test/test-udp-multicast-interface6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-interface6.c' object='test/run_tests-test-udp-multicast-interface6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-interface6.o `test -f 'test/test-udp-multicast-interface6.c' || echo '$(srcdir)/'`test/test-udp-multicast-interface6.c
test/run_tests-test-udp-multicast-interface6.obj: test/test-udp-multicast-interface6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-interface6.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Tpo -c -o test/run_tests-test-udp-multicast-interface6.obj `if test -f 'test/test-udp-multicast-interface6.c'; then $(CYGPATH_W) 'test/test-udp-multicast-interface6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-interface6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-interface6.c' object='test/run_tests-test-udp-multicast-interface6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-interface6.obj `if test -f 'test/test-udp-multicast-interface6.c'; then $(CYGPATH_W) 'test/test-udp-multicast-interface6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-interface6.c'; fi`
test/run_tests-test-udp-multicast-join.o: test/test-udp-multicast-join.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-join.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-join.Tpo -c -o test/run_tests-test-udp-multicast-join.o `test -f 'test/test-udp-multicast-join.c' || echo '$(srcdir)/'`test/test-udp-multicast-join.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-join.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-join.c' object='test/run_tests-test-udp-multicast-join.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-join.o `test -f 'test/test-udp-multicast-join.c' || echo '$(srcdir)/'`test/test-udp-multicast-join.c
test/run_tests-test-udp-multicast-join.obj: test/test-udp-multicast-join.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-join.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-join.Tpo -c -o test/run_tests-test-udp-multicast-join.obj `if test -f 'test/test-udp-multicast-join.c'; then $(CYGPATH_W) 'test/test-udp-multicast-join.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-join.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-join.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-join.c' object='test/run_tests-test-udp-multicast-join.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-join.obj `if test -f 'test/test-udp-multicast-join.c'; then $(CYGPATH_W) 'test/test-udp-multicast-join.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-join.c'; fi`
test/run_tests-test-udp-multicast-join6.o: test/test-udp-multicast-join6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-join6.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Tpo -c -o test/run_tests-test-udp-multicast-join6.o `test -f 'test/test-udp-multicast-join6.c' || echo '$(srcdir)/'`test/test-udp-multicast-join6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-join6.c' object='test/run_tests-test-udp-multicast-join6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-join6.o `test -f 'test/test-udp-multicast-join6.c' || echo '$(srcdir)/'`test/test-udp-multicast-join6.c
test/run_tests-test-udp-multicast-join6.obj: test/test-udp-multicast-join6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-join6.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Tpo -c -o test/run_tests-test-udp-multicast-join6.obj `if test -f 'test/test-udp-multicast-join6.c'; then $(CYGPATH_W) 'test/test-udp-multicast-join6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-join6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-join6.c' object='test/run_tests-test-udp-multicast-join6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-join6.obj `if test -f 'test/test-udp-multicast-join6.c'; then $(CYGPATH_W) 'test/test-udp-multicast-join6.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-join6.c'; fi`
test/run_tests-test-udp-multicast-ttl.o: test/test-udp-multicast-ttl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-ttl.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Tpo -c -o test/run_tests-test-udp-multicast-ttl.o `test -f 'test/test-udp-multicast-ttl.c' || echo '$(srcdir)/'`test/test-udp-multicast-ttl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-ttl.c' object='test/run_tests-test-udp-multicast-ttl.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-ttl.o `test -f 'test/test-udp-multicast-ttl.c' || echo '$(srcdir)/'`test/test-udp-multicast-ttl.c
test/run_tests-test-udp-multicast-ttl.obj: test/test-udp-multicast-ttl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-multicast-ttl.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Tpo -c -o test/run_tests-test-udp-multicast-ttl.obj `if test -f 'test/test-udp-multicast-ttl.c'; then $(CYGPATH_W) 'test/test-udp-multicast-ttl.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-ttl.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Tpo test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-multicast-ttl.c' object='test/run_tests-test-udp-multicast-ttl.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-multicast-ttl.obj `if test -f 'test/test-udp-multicast-ttl.c'; then $(CYGPATH_W) 'test/test-udp-multicast-ttl.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-multicast-ttl.c'; fi`
test/run_tests-test-udp-open.o: test/test-udp-open.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-open.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-open.Tpo -c -o test/run_tests-test-udp-open.o `test -f 'test/test-udp-open.c' || echo '$(srcdir)/'`test/test-udp-open.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-open.Tpo test/$(DEPDIR)/run_tests-test-udp-open.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-open.c' object='test/run_tests-test-udp-open.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-open.o `test -f 'test/test-udp-open.c' || echo '$(srcdir)/'`test/test-udp-open.c
test/run_tests-test-udp-open.obj: test/test-udp-open.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-open.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-open.Tpo -c -o test/run_tests-test-udp-open.obj `if test -f 'test/test-udp-open.c'; then $(CYGPATH_W) 'test/test-udp-open.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-open.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-open.Tpo test/$(DEPDIR)/run_tests-test-udp-open.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-open.c' object='test/run_tests-test-udp-open.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-open.obj `if test -f 'test/test-udp-open.c'; then $(CYGPATH_W) 'test/test-udp-open.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-open.c'; fi`
test/run_tests-test-udp-options.o: test/test-udp-options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-options.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-options.Tpo -c -o test/run_tests-test-udp-options.o `test -f 'test/test-udp-options.c' || echo '$(srcdir)/'`test/test-udp-options.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-options.Tpo test/$(DEPDIR)/run_tests-test-udp-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-options.c' object='test/run_tests-test-udp-options.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-options.o `test -f 'test/test-udp-options.c' || echo '$(srcdir)/'`test/test-udp-options.c
test/run_tests-test-udp-options.obj: test/test-udp-options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-options.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-options.Tpo -c -o test/run_tests-test-udp-options.obj `if test -f 'test/test-udp-options.c'; then $(CYGPATH_W) 'test/test-udp-options.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-options.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-options.Tpo test/$(DEPDIR)/run_tests-test-udp-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-options.c' object='test/run_tests-test-udp-options.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-options.obj `if test -f 'test/test-udp-options.c'; then $(CYGPATH_W) 'test/test-udp-options.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-options.c'; fi`
test/run_tests-test-udp-send-and-recv.o: test/test-udp-send-and-recv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-and-recv.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Tpo -c -o test/run_tests-test-udp-send-and-recv.o `test -f 'test/test-udp-send-and-recv.c' || echo '$(srcdir)/'`test/test-udp-send-and-recv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Tpo test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-and-recv.c' object='test/run_tests-test-udp-send-and-recv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-and-recv.o `test -f 'test/test-udp-send-and-recv.c' || echo '$(srcdir)/'`test/test-udp-send-and-recv.c
test/run_tests-test-udp-send-and-recv.obj: test/test-udp-send-and-recv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-and-recv.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Tpo -c -o test/run_tests-test-udp-send-and-recv.obj `if test -f 'test/test-udp-send-and-recv.c'; then $(CYGPATH_W) 'test/test-udp-send-and-recv.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-and-recv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Tpo test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-and-recv.c' object='test/run_tests-test-udp-send-and-recv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-and-recv.obj `if test -f 'test/test-udp-send-and-recv.c'; then $(CYGPATH_W) 'test/test-udp-send-and-recv.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-and-recv.c'; fi`
test/run_tests-test-udp-send-hang-loop.o: test/test-udp-send-hang-loop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-hang-loop.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Tpo -c -o test/run_tests-test-udp-send-hang-loop.o `test -f 'test/test-udp-send-hang-loop.c' || echo '$(srcdir)/'`test/test-udp-send-hang-loop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Tpo test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-hang-loop.c' object='test/run_tests-test-udp-send-hang-loop.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-hang-loop.o `test -f 'test/test-udp-send-hang-loop.c' || echo '$(srcdir)/'`test/test-udp-send-hang-loop.c
test/run_tests-test-udp-send-hang-loop.obj: test/test-udp-send-hang-loop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-hang-loop.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Tpo -c -o test/run_tests-test-udp-send-hang-loop.obj `if test -f 'test/test-udp-send-hang-loop.c'; then $(CYGPATH_W) 'test/test-udp-send-hang-loop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-hang-loop.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Tpo test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-hang-loop.c' object='test/run_tests-test-udp-send-hang-loop.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-hang-loop.obj `if test -f 'test/test-udp-send-hang-loop.c'; then $(CYGPATH_W) 'test/test-udp-send-hang-loop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-hang-loop.c'; fi`
test/run_tests-test-udp-send-immediate.o: test/test-udp-send-immediate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-immediate.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-immediate.Tpo -c -o test/run_tests-test-udp-send-immediate.o `test -f 'test/test-udp-send-immediate.c' || echo '$(srcdir)/'`test/test-udp-send-immediate.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-immediate.Tpo test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-immediate.c' object='test/run_tests-test-udp-send-immediate.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-immediate.o `test -f 'test/test-udp-send-immediate.c' || echo '$(srcdir)/'`test/test-udp-send-immediate.c
test/run_tests-test-udp-send-immediate.obj: test/test-udp-send-immediate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-immediate.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-immediate.Tpo -c -o test/run_tests-test-udp-send-immediate.obj `if test -f 'test/test-udp-send-immediate.c'; then $(CYGPATH_W) 'test/test-udp-send-immediate.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-immediate.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-immediate.Tpo test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-immediate.c' object='test/run_tests-test-udp-send-immediate.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-immediate.obj `if test -f 'test/test-udp-send-immediate.c'; then $(CYGPATH_W) 'test/test-udp-send-immediate.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-immediate.c'; fi`
test/run_tests-test-udp-sendmmsg-error.o: test/test-udp-sendmmsg-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-sendmmsg-error.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Tpo -c -o test/run_tests-test-udp-sendmmsg-error.o `test -f 'test/test-udp-sendmmsg-error.c' || echo '$(srcdir)/'`test/test-udp-sendmmsg-error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Tpo test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-sendmmsg-error.c' object='test/run_tests-test-udp-sendmmsg-error.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-sendmmsg-error.o `test -f 'test/test-udp-sendmmsg-error.c' || echo '$(srcdir)/'`test/test-udp-sendmmsg-error.c
test/run_tests-test-udp-sendmmsg-error.obj: test/test-udp-sendmmsg-error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-sendmmsg-error.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Tpo -c -o test/run_tests-test-udp-sendmmsg-error.obj `if test -f 'test/test-udp-sendmmsg-error.c'; then $(CYGPATH_W) 'test/test-udp-sendmmsg-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-sendmmsg-error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Tpo test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-sendmmsg-error.c' object='test/run_tests-test-udp-sendmmsg-error.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-sendmmsg-error.obj `if test -f 'test/test-udp-sendmmsg-error.c'; then $(CYGPATH_W) 'test/test-udp-sendmmsg-error.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-sendmmsg-error.c'; fi`
test/run_tests-test-udp-send-unreachable.o: test/test-udp-send-unreachable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-unreachable.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Tpo -c -o test/run_tests-test-udp-send-unreachable.o `test -f 'test/test-udp-send-unreachable.c' || echo '$(srcdir)/'`test/test-udp-send-unreachable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Tpo test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-unreachable.c' object='test/run_tests-test-udp-send-unreachable.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-unreachable.o `test -f 'test/test-udp-send-unreachable.c' || echo '$(srcdir)/'`test/test-udp-send-unreachable.c
test/run_tests-test-udp-send-unreachable.obj: test/test-udp-send-unreachable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-send-unreachable.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Tpo -c -o test/run_tests-test-udp-send-unreachable.obj `if test -f 'test/test-udp-send-unreachable.c'; then $(CYGPATH_W) 'test/test-udp-send-unreachable.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-unreachable.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Tpo test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-send-unreachable.c' object='test/run_tests-test-udp-send-unreachable.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-send-unreachable.obj `if test -f 'test/test-udp-send-unreachable.c'; then $(CYGPATH_W) 'test/test-udp-send-unreachable.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-send-unreachable.c'; fi`
test/run_tests-test-udp-try-send.o: test/test-udp-try-send.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-try-send.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-try-send.Tpo -c -o test/run_tests-test-udp-try-send.o `test -f 'test/test-udp-try-send.c' || echo '$(srcdir)/'`test/test-udp-try-send.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-try-send.Tpo test/$(DEPDIR)/run_tests-test-udp-try-send.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-try-send.c' object='test/run_tests-test-udp-try-send.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-try-send.o `test -f 'test/test-udp-try-send.c' || echo '$(srcdir)/'`test/test-udp-try-send.c
test/run_tests-test-udp-try-send.obj: test/test-udp-try-send.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-try-send.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-try-send.Tpo -c -o test/run_tests-test-udp-try-send.obj `if test -f 'test/test-udp-try-send.c'; then $(CYGPATH_W) 'test/test-udp-try-send.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-try-send.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-try-send.Tpo test/$(DEPDIR)/run_tests-test-udp-try-send.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-try-send.c' object='test/run_tests-test-udp-try-send.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-try-send.obj `if test -f 'test/test-udp-try-send.c'; then $(CYGPATH_W) 'test/test-udp-try-send.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-try-send.c'; fi`
test/run_tests-test-udp-recv-in-a-row.o: test/test-udp-recv-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-recv-in-a-row.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Tpo -c -o test/run_tests-test-udp-recv-in-a-row.o `test -f 'test/test-udp-recv-in-a-row.c' || echo '$(srcdir)/'`test/test-udp-recv-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Tpo test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-recv-in-a-row.c' object='test/run_tests-test-udp-recv-in-a-row.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-recv-in-a-row.o `test -f 'test/test-udp-recv-in-a-row.c' || echo '$(srcdir)/'`test/test-udp-recv-in-a-row.c
test/run_tests-test-udp-recv-in-a-row.obj: test/test-udp-recv-in-a-row.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-udp-recv-in-a-row.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Tpo -c -o test/run_tests-test-udp-recv-in-a-row.obj `if test -f 'test/test-udp-recv-in-a-row.c'; then $(CYGPATH_W) 'test/test-udp-recv-in-a-row.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-recv-in-a-row.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Tpo test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-udp-recv-in-a-row.c' object='test/run_tests-test-udp-recv-in-a-row.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-udp-recv-in-a-row.obj `if test -f 'test/test-udp-recv-in-a-row.c'; then $(CYGPATH_W) 'test/test-udp-recv-in-a-row.c'; else $(CYGPATH_W) '$(srcdir)/test/test-udp-recv-in-a-row.c'; fi`
test/run_tests-test-uname.o: test/test-uname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-uname.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-uname.Tpo -c -o test/run_tests-test-uname.o `test -f 'test/test-uname.c' || echo '$(srcdir)/'`test/test-uname.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-uname.Tpo test/$(DEPDIR)/run_tests-test-uname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-uname.c' object='test/run_tests-test-uname.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-uname.o `test -f 'test/test-uname.c' || echo '$(srcdir)/'`test/test-uname.c
test/run_tests-test-uname.obj: test/test-uname.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-uname.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-uname.Tpo -c -o test/run_tests-test-uname.obj `if test -f 'test/test-uname.c'; then $(CYGPATH_W) 'test/test-uname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-uname.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-uname.Tpo test/$(DEPDIR)/run_tests-test-uname.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-uname.c' object='test/run_tests-test-uname.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-uname.obj `if test -f 'test/test-uname.c'; then $(CYGPATH_W) 'test/test-uname.c'; else $(CYGPATH_W) '$(srcdir)/test/test-uname.c'; fi`
test/run_tests-test-walk-handles.o: test/test-walk-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-walk-handles.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-walk-handles.Tpo -c -o test/run_tests-test-walk-handles.o `test -f 'test/test-walk-handles.c' || echo '$(srcdir)/'`test/test-walk-handles.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-walk-handles.Tpo test/$(DEPDIR)/run_tests-test-walk-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-walk-handles.c' object='test/run_tests-test-walk-handles.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-walk-handles.o `test -f 'test/test-walk-handles.c' || echo '$(srcdir)/'`test/test-walk-handles.c
test/run_tests-test-walk-handles.obj: test/test-walk-handles.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-walk-handles.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-walk-handles.Tpo -c -o test/run_tests-test-walk-handles.obj `if test -f 'test/test-walk-handles.c'; then $(CYGPATH_W) 'test/test-walk-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-walk-handles.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-walk-handles.Tpo test/$(DEPDIR)/run_tests-test-walk-handles.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-walk-handles.c' object='test/run_tests-test-walk-handles.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-walk-handles.obj `if test -f 'test/test-walk-handles.c'; then $(CYGPATH_W) 'test/test-walk-handles.c'; else $(CYGPATH_W) '$(srcdir)/test/test-walk-handles.c'; fi`
test/run_tests-test-watcher-cross-stop.o: test/test-watcher-cross-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-watcher-cross-stop.o -MD -MP -MF test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Tpo -c -o test/run_tests-test-watcher-cross-stop.o `test -f 'test/test-watcher-cross-stop.c' || echo '$(srcdir)/'`test/test-watcher-cross-stop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Tpo test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-watcher-cross-stop.c' object='test/run_tests-test-watcher-cross-stop.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-watcher-cross-stop.o `test -f 'test/test-watcher-cross-stop.c' || echo '$(srcdir)/'`test/test-watcher-cross-stop.c
test/run_tests-test-watcher-cross-stop.obj: test/test-watcher-cross-stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-test-watcher-cross-stop.obj -MD -MP -MF test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Tpo -c -o test/run_tests-test-watcher-cross-stop.obj `if test -f 'test/test-watcher-cross-stop.c'; then $(CYGPATH_W) 'test/test-watcher-cross-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-watcher-cross-stop.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Tpo test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/test-watcher-cross-stop.c' object='test/run_tests-test-watcher-cross-stop.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-test-watcher-cross-stop.obj `if test -f 'test/test-watcher-cross-stop.c'; then $(CYGPATH_W) 'test/test-watcher-cross-stop.c'; else $(CYGPATH_W) '$(srcdir)/test/test-watcher-cross-stop.c'; fi`
test/run_tests-runner-win.o: test/runner-win.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner-win.o -MD -MP -MF test/$(DEPDIR)/run_tests-runner-win.Tpo -c -o test/run_tests-runner-win.o `test -f 'test/runner-win.c' || echo '$(srcdir)/'`test/runner-win.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner-win.Tpo test/$(DEPDIR)/run_tests-runner-win.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner-win.c' object='test/run_tests-runner-win.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner-win.o `test -f 'test/runner-win.c' || echo '$(srcdir)/'`test/runner-win.c
test/run_tests-runner-win.obj: test/runner-win.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner-win.obj -MD -MP -MF test/$(DEPDIR)/run_tests-runner-win.Tpo -c -o test/run_tests-runner-win.obj `if test -f 'test/runner-win.c'; then $(CYGPATH_W) 'test/runner-win.c'; else $(CYGPATH_W) '$(srcdir)/test/runner-win.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner-win.Tpo test/$(DEPDIR)/run_tests-runner-win.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner-win.c' object='test/run_tests-runner-win.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner-win.obj `if test -f 'test/runner-win.c'; then $(CYGPATH_W) 'test/runner-win.c'; else $(CYGPATH_W) '$(srcdir)/test/runner-win.c'; fi`
test/run_tests-runner-unix.o: test/runner-unix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner-unix.o -MD -MP -MF test/$(DEPDIR)/run_tests-runner-unix.Tpo -c -o test/run_tests-runner-unix.o `test -f 'test/runner-unix.c' || echo '$(srcdir)/'`test/runner-unix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner-unix.Tpo test/$(DEPDIR)/run_tests-runner-unix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner-unix.c' object='test/run_tests-runner-unix.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner-unix.o `test -f 'test/runner-unix.c' || echo '$(srcdir)/'`test/runner-unix.c
test/run_tests-runner-unix.obj: test/runner-unix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -MT test/run_tests-runner-unix.obj -MD -MP -MF test/$(DEPDIR)/run_tests-runner-unix.Tpo -c -o test/run_tests-runner-unix.obj `if test -f 'test/runner-unix.c'; then $(CYGPATH_W) 'test/runner-unix.c'; else $(CYGPATH_W) '$(srcdir)/test/runner-unix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) test/$(DEPDIR)/run_tests-runner-unix.Tpo test/$(DEPDIR)/run_tests-runner-unix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test/runner-unix.c' object='test/run_tests-runner-unix.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_run_tests_CFLAGS) $(CFLAGS) -c -o test/run_tests-runner-unix.obj `if test -f 'test/runner-unix.c'; then $(CYGPATH_W) 'test/runner-unix.c'; else $(CYGPATH_W) '$(srcdir)/test/runner-unix.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
-rm -rf src/.libs src/_libs
-rm -rf src/unix/.libs src/unix/_libs
-rm -rf src/win/.libs src/win/_libs
-rm -rf test/.libs test/_libs
distclean-libtool:
-rm -f libtool config.lt
install-pkgconfigDATA: $(pkgconfig_DATA)
@$(NORMAL_INSTALL)
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
done
uninstall-pkgconfigDATA:
@$(NORMAL_UNINSTALL)
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
install-includeHEADERS: $(include_HEADERS)
@$(NORMAL_INSTALL)
@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
$(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
done
uninstall-includeHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
install-uvincludeHEADERS: $(uvinclude_HEADERS)
@$(NORMAL_INSTALL)
@list='$(uvinclude_HEADERS)'; test -n "$(uvincludedir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(uvincludedir)'"; \
$(MKDIR_P) "$(DESTDIR)$(uvincludedir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(uvincludedir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(uvincludedir)" || exit $$?; \
done
uninstall-uvincludeHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(uvinclude_HEADERS)'; test -n "$(uvincludedir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(uvincludedir)'; $(am__uninstall_files_from_dir)
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
check-TESTS: $(TESTS)
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
srcdir=$(srcdir); export srcdir; \
list=' $(TESTS) '; \
$(am__tty_colors); \
if test -n "$$list"; then \
for tst in $$list; do \
if test -f ./$$tst; then dir=./; \
elif test -f $$tst; then dir=; \
else dir="$(srcdir)/"; fi; \
if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xpass=`expr $$xpass + 1`; \
failed=`expr $$failed + 1`; \
col=$$red; res=XPASS; \
;; \
*) \
col=$$grn; res=PASS; \
;; \
esac; \
elif test $$? -ne 77; then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xfail=`expr $$xfail + 1`; \
col=$$lgn; res=XFAIL; \
;; \
*) \
failed=`expr $$failed + 1`; \
col=$$red; res=FAIL; \
;; \
esac; \
else \
skip=`expr $$skip + 1`; \
col=$$blu; res=SKIP; \
fi; \
echo "$${col}$$res$${std}: $$tst"; \
done; \
if test "$$all" -eq 1; then \
tests="test"; \
All=""; \
else \
tests="tests"; \
All="All "; \
fi; \
if test "$$failed" -eq 0; then \
if test "$$xfail" -eq 0; then \
banner="$$All$$all $$tests passed"; \
else \
if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
fi; \
else \
if test "$$xpass" -eq 0; then \
banner="$$failed of $$all $$tests failed"; \
else \
if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
fi; \
fi; \
dashes="$$banner"; \
skipped=""; \
if test "$$skip" -ne 0; then \
if test "$$skip" -eq 1; then \
skipped="($$skip test was not run)"; \
else \
skipped="($$skip tests were not run)"; \
fi; \
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$skipped"; \
fi; \
report=""; \
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
report="Please report to $(PACKAGE_BUGREPORT)"; \
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$report"; \
fi; \
dashes=`echo "$$dashes" | sed s/./=/g`; \
if test "$$failed" -eq 0; then \
col="$$grn"; \
else \
col="$$red"; \
fi; \
echo "$${col}$$dashes$${std}"; \
echo "$${col}$$banner$${std}"; \
test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
test -z "$$report" || echo "$${col}$$report$${std}"; \
echo "$${col}$$dashes$${std}"; \
test "$$failed" -eq 0; \
else :; fi
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__post_remove_distdir)
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__post_remove_distdir)
dist-zstd: distdir
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
$(am__post_remove_distdir)
dist-tarZ: distdir
@echo WARNING: "Support for distribution archives compressed with" \
"legacy program 'compress' is deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__post_remove_distdir)
dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__post_remove_distdir)
dist dist-all:
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
$(am__post_remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
*.tar.zst*) \
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
esac
chmod -R a-w $(distdir)
chmod u+w $(distdir)
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
chmod a-w $(distdir)
test -d $(distdir)/_build || exit 0; \
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
&& am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build/sub \
&& ../../configure \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \
--srcdir=../.. --prefix="$$dc_install_base" \
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
$(am__post_remove_distdir)
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
@test -n '$(distuninstallcheck_dir)' || { \
echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
check-am: all-am
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: check-am
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
install-checkPROGRAMS: install-libLTLIBRARIES
installdirs:
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(uvincludedir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-rm -f src/$(DEPDIR)/$(am__dirstamp)
-rm -f src/$(am__dirstamp)
-rm -f src/unix/$(DEPDIR)/$(am__dirstamp)
-rm -f src/unix/$(am__dirstamp)
-rm -f src/win/$(DEPDIR)/$(am__dirstamp)
-rm -f src/win/$(am__dirstamp)
-rm -f test/$(DEPDIR)/$(am__dirstamp)
-rm -f test/$(am__dirstamp)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
clean-libtool mostlyclean-am
distclean: distclean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f src/$(DEPDIR)/libuv_la-fs-poll.Plo
-rm -f src/$(DEPDIR)/libuv_la-idna.Plo
-rm -f src/$(DEPDIR)/libuv_la-inet.Plo
-rm -f src/$(DEPDIR)/libuv_la-random.Plo
-rm -f src/$(DEPDIR)/libuv_la-strscpy.Plo
-rm -f src/$(DEPDIR)/libuv_la-strtok.Plo
-rm -f src/$(DEPDIR)/libuv_la-thread-common.Plo
-rm -f src/$(DEPDIR)/libuv_la-threadpool.Plo
-rm -f src/$(DEPDIR)/libuv_la-timer.Plo
-rm -f src/$(DEPDIR)/libuv_la-uv-common.Plo
-rm -f src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Plo
-rm -f src/$(DEPDIR)/libuv_la-version.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-aix-common.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-aix.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-async.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-core.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-cygwin.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-darwin.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-dl.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-freebsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-fs.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-fsevents.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-getnameinfo.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-haiku.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-hurd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-ibmi.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-kqueue.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-linux.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-loop-watcher.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-loop.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-netbsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-no-fsevents.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-no-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-openbsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-os390.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-pipe.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-poll.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-posix-poll.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-process.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-devurandom.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-getentropy.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-getrandom.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-signal.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-stream.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sunos.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-tcp.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-thread.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-tty.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-udp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-async.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-core.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-detect-wakeup.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-dl.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-error.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-fs-event.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-fs.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-getaddrinfo.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-getnameinfo.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-handle.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-loop-watcher.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-pipe.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-poll.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-process-stdio.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-process.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-signal.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-stream.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-tcp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-thread.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-tty.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-udp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-util.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-winapi.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-winsock.Plo
-rm -f test/$(DEPDIR)/run_tests-blackhole-server.Po
-rm -f test/$(DEPDIR)/run_tests-echo-server.Po
-rm -f test/$(DEPDIR)/run_tests-run-tests.Po
-rm -f test/$(DEPDIR)/run_tests-runner-unix.Po
-rm -f test/$(DEPDIR)/run_tests-runner-win.Po
-rm -f test/$(DEPDIR)/run_tests-runner.Po
-rm -f test/$(DEPDIR)/run_tests-test-active.Po
-rm -f test/$(DEPDIR)/run_tests-test-async-null-cb.Po
-rm -f test/$(DEPDIR)/run_tests-test-async.Po
-rm -f test/$(DEPDIR)/run_tests-test-barrier.Po
-rm -f test/$(DEPDIR)/run_tests-test-callback-stack.Po
-rm -f test/$(DEPDIR)/run_tests-test-close-fd.Po
-rm -f test/$(DEPDIR)/run_tests-test-close-order.Po
-rm -f test/$(DEPDIR)/run_tests-test-condvar.Po
-rm -f test/$(DEPDIR)/run_tests-test-connect-unspecified.Po
-rm -f test/$(DEPDIR)/run_tests-test-connection-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-default-loop-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-delayed-accept.Po
-rm -f test/$(DEPDIR)/run_tests-test-dlerror.Po
-rm -f test/$(DEPDIR)/run_tests-test-eintr-handling.Po
-rm -f test/$(DEPDIR)/run_tests-test-embed.Po
-rm -f test/$(DEPDIR)/run_tests-test-emfile.Po
-rm -f test/$(DEPDIR)/run_tests-test-env-vars.Po
-rm -f test/$(DEPDIR)/run_tests-test-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-fail-always.Po
-rm -f test/$(DEPDIR)/run_tests-test-fork.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-copyfile.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-event.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-open-flags.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-poll.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-readdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-currentexe.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-loadavg.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-memory.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-passwd.Po
-rm -f test/$(DEPDIR)/run_tests-test-getaddrinfo.Po
-rm -f test/$(DEPDIR)/run_tests-test-gethostname.Po
-rm -f test/$(DEPDIR)/run_tests-test-getnameinfo.Po
-rm -f test/$(DEPDIR)/run_tests-test-getsockname.Po
-rm -f test/$(DEPDIR)/run_tests-test-getters-setters.Po
-rm -f test/$(DEPDIR)/run_tests-test-gettimeofday.Po
-rm -f test/$(DEPDIR)/run_tests-test-handle-fileno.Po
-rm -f test/$(DEPDIR)/run_tests-test-homedir.Po
-rm -f test/$(DEPDIR)/run_tests-test-hrtime.Po
-rm -f test/$(DEPDIR)/run_tests-test-idle.Po
-rm -f test/$(DEPDIR)/run_tests-test-idna.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip-name.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip4-addr.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip6-addr.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-alive.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-configure.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-stop.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-time.Po
-rm -f test/$(DEPDIR)/run_tests-test-metrics.Po
-rm -f test/$(DEPDIR)/run_tests-test-multiple-listen.Po
-rm -f test/$(DEPDIR)/run_tests-test-mutexes.Po
-rm -f test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po
-rm -f test/$(DEPDIR)/run_tests-test-osx-select.Po
-rm -f test/$(DEPDIR)/run_tests-test-pass-always.Po
-rm -f test/$(DEPDIR)/run_tests-test-ping-pong.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-server-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po
-rm -f test/$(DEPDIR)/run_tests-test-platform-output.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-closesocket.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-oob.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-priority.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-title.Po
-rm -f test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po
-rm -f test/$(DEPDIR)/run_tests-test-random.Po
-rm -f test/$(DEPDIR)/run_tests-test-readable-on-eof.Po
-rm -f test/$(DEPDIR)/run_tests-test-ref.Po
-rm -f test/$(DEPDIR)/run_tests-test-run-nowait.Po
-rm -f test/$(DEPDIR)/run_tests-test-run-once.Po
-rm -f test/$(DEPDIR)/run_tests-test-semaphore.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-eof.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-twice.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal.Po
-rm -f test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po
-rm -f test/$(DEPDIR)/run_tests-test-spawn.Po
-rm -f test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po
-rm -f test/$(DEPDIR)/run_tests-test-strscpy.Po
-rm -f test/$(DEPDIR)/run_tests-test-strtok.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-flags.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-oob.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-open.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-rst.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-try-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-writealot.Po
-rm -f test/$(DEPDIR)/run_tests-test-test-macros.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-affinity.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-equal.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-priority.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread.Po
-rm -f test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po
-rm -f test/$(DEPDIR)/run_tests-test-threadpool.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer-again.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer-from-check.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer.Po
-rm -f test/$(DEPDIR)/run_tests-test-tmpdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-bind.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-connect.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-connect6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-ipv6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-mmsg.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-open.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-options.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-try-send.Po
-rm -f test/$(DEPDIR)/run_tests-test-uname.Po
-rm -f test/$(DEPDIR)/run_tests-test-walk-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-libtool distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-includeHEADERS install-pkgconfigDATA \
install-uvincludeHEADERS
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am: install-libLTLIBRARIES
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f src/$(DEPDIR)/libuv_la-fs-poll.Plo
-rm -f src/$(DEPDIR)/libuv_la-idna.Plo
-rm -f src/$(DEPDIR)/libuv_la-inet.Plo
-rm -f src/$(DEPDIR)/libuv_la-random.Plo
-rm -f src/$(DEPDIR)/libuv_la-strscpy.Plo
-rm -f src/$(DEPDIR)/libuv_la-strtok.Plo
-rm -f src/$(DEPDIR)/libuv_la-thread-common.Plo
-rm -f src/$(DEPDIR)/libuv_la-threadpool.Plo
-rm -f src/$(DEPDIR)/libuv_la-timer.Plo
-rm -f src/$(DEPDIR)/libuv_la-uv-common.Plo
-rm -f src/$(DEPDIR)/libuv_la-uv-data-getter-setters.Plo
-rm -f src/$(DEPDIR)/libuv_la-version.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-aix-common.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-aix.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-async.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-bsd-ifaddrs.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-bsd-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-core.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-cygwin.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-darwin-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-darwin.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-dl.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-freebsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-fs.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-fsevents.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-getaddrinfo.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-getnameinfo.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-haiku.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-hurd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-ibmi.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-kqueue.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-linux.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-loop-watcher.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-loop.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-netbsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-no-fsevents.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-no-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-openbsd.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-os390-syscalls.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-os390.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-pipe.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-poll.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-posix-hrtime.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-posix-poll.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-process.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-procfs-exepath.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-proctitle.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-devurandom.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-getentropy.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-getrandom.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-random-sysctl-linux.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-signal.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-stream.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sunos.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sysinfo-loadavg.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-sysinfo-memory.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-tcp.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-thread.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-tty.Plo
-rm -f src/unix/$(DEPDIR)/libuv_la-udp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-async.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-core.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-detect-wakeup.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-dl.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-error.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-fs-event.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-fs.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-getaddrinfo.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-getnameinfo.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-handle.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-loop-watcher.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-pipe.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-poll.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-process-stdio.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-process.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-signal.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-stream.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-tcp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-thread.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-tty.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-udp.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-util.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-winapi.Plo
-rm -f src/win/$(DEPDIR)/libuv_la-winsock.Plo
-rm -f test/$(DEPDIR)/run_tests-blackhole-server.Po
-rm -f test/$(DEPDIR)/run_tests-echo-server.Po
-rm -f test/$(DEPDIR)/run_tests-run-tests.Po
-rm -f test/$(DEPDIR)/run_tests-runner-unix.Po
-rm -f test/$(DEPDIR)/run_tests-runner-win.Po
-rm -f test/$(DEPDIR)/run_tests-runner.Po
-rm -f test/$(DEPDIR)/run_tests-test-active.Po
-rm -f test/$(DEPDIR)/run_tests-test-async-null-cb.Po
-rm -f test/$(DEPDIR)/run_tests-test-async.Po
-rm -f test/$(DEPDIR)/run_tests-test-barrier.Po
-rm -f test/$(DEPDIR)/run_tests-test-callback-stack.Po
-rm -f test/$(DEPDIR)/run_tests-test-close-fd.Po
-rm -f test/$(DEPDIR)/run_tests-test-close-order.Po
-rm -f test/$(DEPDIR)/run_tests-test-condvar.Po
-rm -f test/$(DEPDIR)/run_tests-test-connect-unspecified.Po
-rm -f test/$(DEPDIR)/run_tests-test-connection-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-cwd-and-chdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-default-loop-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-delayed-accept.Po
-rm -f test/$(DEPDIR)/run_tests-test-dlerror.Po
-rm -f test/$(DEPDIR)/run_tests-test-eintr-handling.Po
-rm -f test/$(DEPDIR)/run_tests-test-embed.Po
-rm -f test/$(DEPDIR)/run_tests-test-emfile.Po
-rm -f test/$(DEPDIR)/run_tests-test-env-vars.Po
-rm -f test/$(DEPDIR)/run_tests-test-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-fail-always.Po
-rm -f test/$(DEPDIR)/run_tests-test-fork.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-copyfile.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-event.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-fd-hash.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-open-flags.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-poll.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs-readdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-fs.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-currentexe.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-loadavg.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-memory.Po
-rm -f test/$(DEPDIR)/run_tests-test-get-passwd.Po
-rm -f test/$(DEPDIR)/run_tests-test-getaddrinfo.Po
-rm -f test/$(DEPDIR)/run_tests-test-gethostname.Po
-rm -f test/$(DEPDIR)/run_tests-test-getnameinfo.Po
-rm -f test/$(DEPDIR)/run_tests-test-getsockname.Po
-rm -f test/$(DEPDIR)/run_tests-test-getters-setters.Po
-rm -f test/$(DEPDIR)/run_tests-test-gettimeofday.Po
-rm -f test/$(DEPDIR)/run_tests-test-handle-fileno.Po
-rm -f test/$(DEPDIR)/run_tests-test-homedir.Po
-rm -f test/$(DEPDIR)/run_tests-test-hrtime.Po
-rm -f test/$(DEPDIR)/run_tests-test-idle.Po
-rm -f test/$(DEPDIR)/run_tests-test-idna.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip-name.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip4-addr.Po
-rm -f test/$(DEPDIR)/run_tests-test-ip6-addr.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc-heavy-traffic-deadlock-bug.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc-send-recv.Po
-rm -f test/$(DEPDIR)/run_tests-test-ipc.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-alive.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-configure.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-stop.Po
-rm -f test/$(DEPDIR)/run_tests-test-loop-time.Po
-rm -f test/$(DEPDIR)/run_tests-test-metrics.Po
-rm -f test/$(DEPDIR)/run_tests-test-multiple-listen.Po
-rm -f test/$(DEPDIR)/run_tests-test-mutexes.Po
-rm -f test/$(DEPDIR)/run_tests-test-not-readable-nor-writable-on-read-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-not-writable-after-shutdown.Po
-rm -f test/$(DEPDIR)/run_tests-test-osx-select.Po
-rm -f test/$(DEPDIR)/run_tests-test-pass-always.Po
-rm -f test/$(DEPDIR)/run_tests-test-ping-pong.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-bind-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-close-stdout-read-stdin.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-multiple.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-connect-prepare.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-getsockname.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-pending-instances.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-sendmsg.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-server-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-set-fchmod.Po
-rm -f test/$(DEPDIR)/run_tests-test-pipe-set-non-blocking.Po
-rm -f test/$(DEPDIR)/run_tests-test-platform-output.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-close-doesnt-corrupt-stack.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-closesocket.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-multiple-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll-oob.Po
-rm -f test/$(DEPDIR)/run_tests-test-poll.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-priority.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-title-threadsafe.Po
-rm -f test/$(DEPDIR)/run_tests-test-process-title.Po
-rm -f test/$(DEPDIR)/run_tests-test-queue-foreach-delete.Po
-rm -f test/$(DEPDIR)/run_tests-test-random.Po
-rm -f test/$(DEPDIR)/run_tests-test-readable-on-eof.Po
-rm -f test/$(DEPDIR)/run_tests-test-ref.Po
-rm -f test/$(DEPDIR)/run_tests-test-run-nowait.Po
-rm -f test/$(DEPDIR)/run_tests-test-run-once.Po
-rm -f test/$(DEPDIR)/run_tests-test-semaphore.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-eof.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-simultaneous.Po
-rm -f test/$(DEPDIR)/run_tests-test-shutdown-twice.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal-multiple-loops.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal-pending-on-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-signal.Po
-rm -f test/$(DEPDIR)/run_tests-test-socket-buffer-size.Po
-rm -f test/$(DEPDIR)/run_tests-test-spawn.Po
-rm -f test/$(DEPDIR)/run_tests-test-stdio-over-pipes.Po
-rm -f test/$(DEPDIR)/run_tests-test-strscpy.Po
-rm -f test/$(DEPDIR)/run_tests-test-strtok.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-alloc-cb-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-bind-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-bind6-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-accept.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-after-read-timeout.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-reset.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close-while-connecting.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-close.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-error-after-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect-timeout.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-connect6-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-create-socket-early.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-flags.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-oob.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-open.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-read-stop-start.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-read-stop.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-rst.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-shutdown-after-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-try-write-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-try-write.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-unexpected-read.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-after-connect.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-in-a-row.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-queue-order.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-write-to-half-open-connection.Po
-rm -f test/$(DEPDIR)/run_tests-test-tcp-writealot.Po
-rm -f test/$(DEPDIR)/run_tests-test-test-macros.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-affinity.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-equal.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread-priority.Po
-rm -f test/$(DEPDIR)/run_tests-test-thread.Po
-rm -f test/$(DEPDIR)/run_tests-test-threadpool-cancel.Po
-rm -f test/$(DEPDIR)/run_tests-test-threadpool.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer-again.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer-from-check.Po
-rm -f test/$(DEPDIR)/run_tests-test-timer.Po
-rm -f test/$(DEPDIR)/run_tests-test-tmpdir.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty-duplicate-key.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty-escape-sequence-processing.Po
-rm -f test/$(DEPDIR)/run_tests-test-tty.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-alloc-cb-fail.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-bind.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-connect.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-connect6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-create-socket-early.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-dgram-too-big.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-ipv6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-mmsg.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-interface.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-interface6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-join.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-join6.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-multicast-ttl.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-open.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-options.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-recv-in-a-row.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-and-recv.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-hang-loop.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-immediate.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-send-unreachable.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-sendmmsg-error.Po
-rm -f test/$(DEPDIR)/run_tests-test-udp-try-send.Po
-rm -f test/$(DEPDIR)/run_tests-test-uname.Po
-rm -f test/$(DEPDIR)/run_tests-test-walk-handles.Po
-rm -f test/$(DEPDIR)/run_tests-test-watcher-cross-stop.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
uninstall-pkgconfigDATA uninstall-uvincludeHEADERS
.MAKE: check-am install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles am--refresh check \
check-TESTS check-am clean clean-checkPROGRAMS clean-cscope \
clean-generic clean-libLTLIBRARIES clean-libtool cscope \
cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
dist-zstd distcheck distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags \
distcleancheck distdir distuninstallcheck dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
install-exec-am install-html install-html-am \
install-includeHEADERS install-info install-info-am \
install-libLTLIBRARIES install-man install-pdf install-pdf-am \
install-pkgconfigDATA install-ps install-ps-am install-strip \
install-uvincludeHEADERS installcheck installcheck-am \
installdirs maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am uninstall-includeHEADERS uninstall-libLTLIBRARIES \
uninstall-pkgconfigDATA uninstall-uvincludeHEADERS
.PRECIOUS: Makefile
@WINNT_TRUE@check-am: test/run-tests_no_ext
@WINNT_TRUE@test/run-tests_no_ext: test/run-tests$(EXEEXT)
@WINNT_TRUE@ cp test/run-tests$(EXEEXT) test/run-tests_no_ext
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
luv-0.5.14/src/c/vendor/configure/ar-lib 0000775 0000000 0000000 00000013363 14666340476 0020020 0 ustar 00root root 0000000 0000000 #! /bin/sh
# Wrapper for Microsoft lib.exe
me=ar-lib
scriptversion=2019-07-04.01; # UTC
# Copyright (C) 2010-2021 Free Software Foundation, Inc.
# Written by Peter Rosin .
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
# This file is maintained in Automake, please report
# bugs to or send patches to
# .
# func_error message
func_error ()
{
echo "$me: $1" 1>&2
exit 1
}
file_conv=
# func_file_conv build_file
# Convert a $build file to $host form and store it in $file
# Currently only supports Windows hosts.
func_file_conv ()
{
file=$1
case $file in
/ | /[!/]*) # absolute file, and not a UNC file
if test -z "$file_conv"; then
# lazily determine how to convert abs files
case `uname -s` in
MINGW*)
file_conv=mingw
;;
CYGWIN* | MSYS*)
file_conv=cygwin
;;
*)
file_conv=wine
;;
esac
fi
case $file_conv in
mingw)
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
;;
cygwin | msys)
file=`cygpath -m "$file" || echo "$file"`
;;
wine)
file=`winepath -w "$file" || echo "$file"`
;;
esac
;;
esac
}
# func_at_file at_file operation archive
# Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
# for each of them.
# When interpreting the content of the @FILE, do NOT use func_file_conv,
# since the user would need to supply preconverted file names to
# binutils ar, at least for MinGW.
func_at_file ()
{
operation=$2
archive=$3
at_file_contents=`cat "$1"`
eval set x "$at_file_contents"
shift
for member
do
$AR -NOLOGO $operation:"$member" "$archive" || exit $?
done
}
case $1 in
'')
func_error "no command. Try '$0 --help' for more information."
;;
-h | --h*)
cat <