]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bind/port/freebsd/include/Makefile
This commit was generated by cvs2svn to compensate for changes in r58809,
[FreeBSD/FreeBSD.git] / contrib / bind / port / freebsd / include / Makefile
1 # ++Copyright++
2 # -
3 # Copyright (c) 
4 #    The Regents of the University of California.  All rights reserved.
5
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 # 3. All advertising materials mentioning features or use of this software
15 #    must display the following acknowledgement:
16 #       This product includes software developed by the University of
17 #       California, Berkeley and its contributors.
18 # 4. Neither the name of the University nor the names of its contributors
19 #    may be used to endorse or promote products derived from this software
20 #    without specific prior written permission.
21
22 # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 # SUCH DAMAGE.
33 # -
34 # Portions Copyright (c) 1993 by Digital Equipment Corporation.
35
36 # Permission to use, copy, modify, and distribute this software for any
37 # purpose with or without fee is hereby granted, provided that the above
38 # copyright notice and this permission notice appear in all copies, and that
39 # the name of Digital Equipment Corporation not be used in advertising or
40 # publicity pertaining to distribution of the document or software without
41 # specific, written prior permission.
42
43 # THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
44 # WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
45 # OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
46 # CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
47 # DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
48 # PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
49 # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
50 # SOFTWARE.
51 # -
52 # --Copyright--
53
54 SUBDIRS = sys
55 HFILES =
56
57 DESTDIR=
58 DESTINC= /usr/local/bind/include
59 INSTALL= install
60
61 MARGS= DESTDIR="${DESTDIR}" DESTINC="${DESTINC}" INSTALL="${INSTALL}"
62
63 all depend clean distclean install::
64         @for x in ${SUBDIRS}; do \
65                 (cd $$x; pwd; ${MAKE} ${MARGS} $@); \
66         done
67
68 all depend::
69         probe_ipv6
70
71 distclean:: clean
72
73 clean::
74         rm -f *~ *.BAK *.CKP *.orig
75         rm -f port_ipv6.h new_port_ipv6.h
76
77 links: FRC
78         @set -e; ln -s SRC/*.h .
79         @set -e; for x in ${SUBDIRS}; do \
80                 ( mkdir $$x; cd $$x; pwd; ln -s ../SRC/$$x SRC; \
81                 cp SRC/Makefile Makefile; chmod +w Makefile; \
82                 ${MAKE} ${MARGS} links ); \
83         done
84
85 install:: ${DESTDIR}${DESTINC}
86         -for x in "" ${HFILES}; do \
87             if [ -n "$$x" ]; then \
88                 ${INSTALL} -c -m 444 $$x ${DESTDIR}${DESTINC}/$$x; \
89             fi; \
90         done
91
92 ${DESTDIR}${DESTINC}:
93         mkdir -p ${DESTDIR}${DESTINC}
94
95 FRC: