Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / libbind / dist / port / cygwin / include / Makefile.in
blob3221950d407a09f2868c90688c2a55763a5cdec5
1 # Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
2 # Copyright (C) 2002 Internet Software Consortium.
4 # Permission to use, copy, modify, and/or distribute this software for any
5 # purpose with or without fee is hereby granted, provided that the above
6 # copyright notice and this permission notice appear in all copies.
8 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 # PERFORMANCE OF THIS SOFTWARE.
16 # Id: Makefile.in,v 1.4 2007/06/19 23:47:14 tbox Exp
18 srcdir = @srcdir@
19 VPATH = @srcdir@
20 top_srcdir = @top_srcdir@
22 HEADERS= ansi_realloc.h assert.h paths.h
23 AHEADERS= asm/socket.h
24 NHEADERS= net/route.h
25 SHEADERS= sys/bitypes.h sys/cdefs.h sys/mbuf.h sys/socket.h sys/un.h sys/wait.h
27 all:
29 @BIND9_MAKE_RULES@
31 installdirs:
32 $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/asm \
33 ${DESTDIR}${includedir}/net ${DESTDIR}${includedir}/sys
35 install:: installdirs
36 for i in ${HEADERS}; do \
37 ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}; \
38 done
39 for i in ${AHEADERS}; do \
40 ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/asm; \
41 done
42 for i in ${NHEADERS}; do \
43 ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/net; \
44 done
45 for i in ${SHEADERS}; do \
46 ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/sys; \
47 done