Deleted Added
full compact
Makefile (56977) Makefile (243933)
1# @(#) Makefile 1.23 97/03/21 19:27:20
1# @(#) Makefile 1.23 97/03/21 19:27:20
2# $FreeBSD: head/contrib/tcp_wrappers/Makefile 56977 2000-02-03 10:27:03Z shin $
2# $FreeBSD: head/contrib/tcp_wrappers/Makefile 243933 2012-12-06 01:31:25Z eadler $
3
4what:
5 @echo
6 @echo "Usage: edit the REAL_DAEMON_DIR definition in the Makefile then:"
7 @echo
8 @echo " make sys-type"
9 @echo
10 @echo "If you are in a hurry you can try instead:"

--- 123 unchanged lines hidden (view full) ---

134# Freebsd and linux by default have no NIS.
135386bsd bsdos:
136 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
137 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
138 EXTRA_CFLAGS=-DSYS_ERRLIST_DEFINED VSYSLOG= all
139
140freebsd:
141 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
3
4what:
5 @echo
6 @echo "Usage: edit the REAL_DAEMON_DIR definition in the Makefile then:"
7 @echo
8 @echo " make sys-type"
9 @echo
10 @echo "If you are in a hurry you can try instead:"

--- 123 unchanged lines hidden (view full) ---

134# Freebsd and linux by default have no NIS.
135386bsd bsdos:
136 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
137 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
138 EXTRA_CFLAGS=-DSYS_ERRLIST_DEFINED VSYSLOG= all
139
140freebsd:
141 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
142 RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP=-DNETGROUP TLI= \
142 RANLIB=ranlib ARFLAGS=$(ARFLAGS) AUX_OBJ= NETGROUP=-DNETGROUP TLI= \
143 EXTRA_CFLAGS="-DSYS_ERRLIST_DEFINED -DINET6 -DUSE_GETIPNODEBY" \
144 VSYSLOG= all
145
146netbsd:
147 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
148 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
149 EXTRA_CFLAGS="-DSYS_ERRLIST_DEFINED -DINET6 \
150 -Dss_family=__ss_family -Dss_len=__ss_len" VSYSLOG= all

--- 245 unchanged lines hidden (view full) ---

396#
397# Some C compilers (Ultrix 4.x) insist that ranlib(1) be run on an object
398# library; some don't care as long as the modules are in the right order;
399# some systems don't even have a ranlib(1) command. Make your choice.
400
401RANLIB = ranlib # have ranlib (BSD-ish UNIX)
402#RANLIB = echo # no ranlib (SYSV-ish UNIX)
403
143 EXTRA_CFLAGS="-DSYS_ERRLIST_DEFINED -DINET6 -DUSE_GETIPNODEBY" \
144 VSYSLOG= all
145
146netbsd:
147 @make REAL_DAEMON_DIR=$(REAL_DAEMON_DIR) STYLE=$(STYLE) \
148 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
149 EXTRA_CFLAGS="-DSYS_ERRLIST_DEFINED -DINET6 \
150 -Dss_family=__ss_family -Dss_len=__ss_len" VSYSLOG= all

--- 245 unchanged lines hidden (view full) ---

396#
397# Some C compilers (Ultrix 4.x) insist that ranlib(1) be run on an object
398# library; some don't care as long as the modules are in the right order;
399# some systems don't even have a ranlib(1) command. Make your choice.
400
401RANLIB = ranlib # have ranlib (BSD-ish UNIX)
402#RANLIB = echo # no ranlib (SYSV-ish UNIX)
403
404ARFLAGS = rv # most systems
404ARFLAGS ?= rv # most systems
405#ARFLAGS= rvs # IRIX 4.0.x
406
407AR = ar
408#AR = bld # Unicos 8.x
409
410#############################################################################
411# System dependencies: routines that are not present in the system libraries.
412#

--- 500 unchanged lines hidden ---
405#ARFLAGS= rvs # IRIX 4.0.x
406
407AR = ar
408#AR = bld # Unicos 8.x
409
410#############################################################################
411# System dependencies: routines that are not present in the system libraries.
412#

--- 500 unchanged lines hidden ---