summaryrefslogtreecommitdiffstats
path: root/contrib/bind/named/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind/named/Makefile')
-rw-r--r--contrib/bind/named/Makefile196
1 files changed, 196 insertions, 0 deletions
diff --git a/contrib/bind/named/Makefile b/contrib/bind/named/Makefile
new file mode 100644
index 0000000..edd6533
--- /dev/null
+++ b/contrib/bind/named/Makefile
@@ -0,0 +1,196 @@
+#
+# @(#)Makefile.dist 5.4 (Berkeley) 8/15/90
+# $Id: Makefile,v 8.7 1995/12/22 10:20:30 vixie Exp $
+#
+
+## ++Copyright++ 1987, 1988, 1990
+## -
+## Copyright (c) 1987, 1988, 1990
+## The Regents of the University of California. All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted provided that the following conditions
+## are met:
+## 1. Redistributions of source code must retain the above copyright
+## notice, this list of conditions and the following disclaimer.
+## 2. Redistributions in binary form must reproduce the above copyright
+## notice, this list of conditions and the following disclaimer in the
+## documentation and/or other materials provided with the distribution.
+## 3. All advertising materials mentioning features or use of this software
+## must display the following acknowledgement:
+## This product includes software developed by the University of
+## California, Berkeley and its contributors.
+## 4. Neither the name of the University nor the names of its contributors
+## may be used to endorse or promote products derived from this software
+## without specific prior written permission.
+##
+## THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+## ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+## SUCH DAMAGE.
+## -
+## Portions Copyright (c) 1993 by Digital Equipment Corporation.
+##
+## Permission to use, copy, modify, and 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, and that
+## the name of Digital Equipment Corporation not be used in advertising or
+## publicity pertaining to distribution of the document or software without
+## specific, written prior permission.
+##
+## THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
+## WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
+## OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
+## CORPORATION 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.
+## -
+## --Copyright--
+
+## NOTE: customizing this Makefile is almost certainly the wrong thing to do.
+## unless you are a developer and intend to run "make" here a lot of times
+## per day, you should just run "make" from the top-level directory after
+## configuring _that_ Makefile with the right system-dependent values.
+
+VER = LOCAL-`date +%y%m%d.%H%M%S`
+SHELL = /bin/sh
+DESTDIR =
+
+INDOT=
+XFER_INDOT=
+#(sunos)
+#INDOT=in.
+#XFER_INDOT=in.
+
+HOSTNAMECMD = hostname || uname -n
+
+#(these defaults are reasonable for a BSD/OS test environment;
+# for real configuration, edit ../Makefile and run make from there.)
+
+COMPINCL = ../compat/include
+INCL= ../include
+RES= ../res/libresolv.a
+DESTSBIN = ${DESTDIR}/usr/sbin
+DESTEXEC = ${DESTDIR}/usr/libexec
+PIDDIR = /var/run
+CC= cc
+#CC= gcc2 -Wimplicit -Wunused -Wreturn-type
+SHELL= /bin/sh
+CDEBUG= -g
+LIBS=
+COMPLIB= ../compat/lib/lib44bsd.a
+PATH_XFER = ${DESTEXEC}/${XFER_INDOT}named-xfer
+DEFS = -D_PATH_XFER=\"${PATH_XFER}\" -D_PATH_PIDFILE=\"${PIDDIR}/named.pid\"
+INSTALL = install
+PS=ps
+IOT=ABRT
+
+CFLAGS = ${CDEBUG} -I${INCL} -I${COMPINCL} ${DEFS}
+
+HDRS= db_defs.h db_glob.h ns_defs.h ns_glob.h named.h pathnames.h tree.h
+SRCS= db_dump.c db_load.c db_lookup.c db_reload.c db_save.c db_update.c \
+ db_secure.c db_glue.c \
+ ns_forw.c ns_init.c ns_main.c ns_maint.c ns_req.c ns_resp.c \
+ ns_sort.c ns_stats.c ns_validate.c ns_ncache.c \
+ storage.c dmalloc.c tree.c
+OBJS= db_dump.o db_load.o db_lookup.o db_reload.o db_save.o db_update.o \
+ db_secure.o db_glue.o \
+ ns_forw.o ns_init.o ns_main.o ns_maint.o ns_req.o ns_resp.o \
+ ns_sort.o ns_stats.o ns_validate.o ns_ncache.o \
+ storage.o dmalloc.o tree.o
+XFERSRCS= named-xfer.c
+XFEROBJ= named-xfer.o db_glue.o storage.o dmalloc.o version.o
+
+all: named named-xfer named.reload named.restart ndc
+
+named: ${OBJS} ${RES} ${COMPLIB} version.o
+ ${CC} ${CDEBUG} ${LDFLAGS} -o $@ version.o ${OBJS} \
+ ${RES} ${COMPLIB} ${LIBS}
+
+version.o: version.c
+
+version.c: Version.c Makefile ../Makefile ${SRCS} ${HDRS}
+ (u=$${USER-root} d=`pwd` h=`${HOSTNAMECMD}` t=`date`; \
+ sed -e "s|%WHEN%|$${t}|" -e "s|%VERSION%|"${VER}"|" \
+ -e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
+ < Version.c > version.c)
+
+named.reload: named.reload.sh Makefile
+ sed -e "s|%INDOT%|${INDOT}|" \
+ -e "s|%DESTSBIN%|${DESTSBIN}|" \
+ < named.reload.sh > named.reload
+ chmod +x named.reload
+
+named.restart: named.restart.sh Makefile
+ sed -e "s|%INDOT%|${INDOT}|" \
+ -e "s|%DESTSBIN%|${DESTSBIN}|" \
+ < named.restart.sh > named.restart
+ chmod +x named.restart
+
+ndc: ndc.sh Makefile
+ sed -e "s|%PIDDIR%|${PIDDIR}|" \
+ -e "s|%INDOT%|${INDOT}|" \
+ -e "s|%PS%|${PS}|" \
+ -e "s|%IOTPS%|${IOT}|" \
+ -e "s|%DESTSBIN%|${DESTSBIN}|" \
+ -e "s|%IOT%|${IOT}|" \
+ < ndc.sh > ndc
+ chmod +x ndc
+
+named-xfer: ${XFEROBJ} ${RES} ${COMPLIB}
+ ${CC} ${CDEBUG} ${LDFLAGS} -o $@ ${XFEROBJ} \
+ ${RES} ${COMPLIB} ${LIBS}
+
+centerline_named:
+ #load -I${INCL} -I${COMPINCL} ${CFLAGS} ${SRCS} \
+ version.c ${RES} ${COMPLIB} ${LIBS}
+
+centerline_obj:
+ #load -I${INCL} -I${COMPINCL} ${CFLAGS} ${OBJS} \
+ version.o ${RES} ${COMPLIB} ${LIBS}
+
+centerline_xfer:
+ #load -DXFER ${CFLAGS} ${XFERSRCS} ${RES} ${COMPLIB} ${LIBS}
+
+clean:
+ rm -f ${OBJS} ${XFEROBJ} core named named-xfer version.o version.c
+ rm -f *~ *.BAK *.CKP
+ rm -f tags .depend core named.reload named.restart ndc
+ rm -f *.orig
+
+depend .depend: ${SRCS} ${XFERSRCS}
+ mkdep ${CPPFLAGS} -I${INCL} -I${COMPINCL} ${SRCS} ${XFERSRCS}
+
+install:
+ ${INSTALL} -c -s -o bin -g bin -m 555 \
+ named ${DESTDIR}${DESTSBIN}/${INDOT}named
+ ${INSTALL} -c -s -o bin -g bin -m 555 \
+ named-xfer ${DESTDIR}${PATH_XFER}
+ ${INSTALL} -c -o bin -g bin -m 555 \
+ named.restart ${DESTDIR}${DESTSBIN}/${INDOT}named.restart
+ ${INSTALL} -c -o bin -g bin -m 555 \
+ named.reload ${DESTDIR}${DESTSBIN}/${INDOT}named.reload
+ ${INSTALL} -c -o bin -g bin -m 555 \
+ ndc ${DESTDIR}${DESTSBIN}/${INDOT}ndc
+ @echo "*** Install symlinks if needed ***"
+
+lint: ${SRCS} ${HDRS} ${XFERSRCS}
+ lint -x -Dlint ${CFLAGS} ${SRCS} ${XFERSRCS} 2>&1 \
+ | grep -v 'warning: nested comments not supported'
+
+tags: ${SRCS} ${XFERSRCS} Makefile
+ ctags -t `echo ${SRCS} ${HDRS} ${XFERSRCS}|tr ' ' '\012'|sort -u`
+
+$(SRCS):: $(HDRS)
+
+# DO NOT DELETE THIS LINE -- mkdep uses it.
+# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
OpenPOWER on IntegriCloud