1#
2# $Id: Makefile.config,v 5.2 90/06/23 22:21:19 jsp Rel $
3#
4# Copyright (c) 1990 Jan-Simon Pendry
5# Copyright (c) 1990 Imperial College of Science, Technology & Medicine
6# Copyright (c) 1990 The Regents of the University of California.
7# All rights reserved.
8#
9# This code is derived from software contributed to Berkeley by
10# Jan-Simon Pendry at Imperial College, London.
11#
12# %sccs.include.redist.sh%
13#
14#	@(#)Makefile.config	5.1 (Berkeley) 06/29/90
15#
16
17#
18# Comment/uncomment the following lines as required
19#
20
21#
22# Where local include files are stored
23#
24#XINCLUDE = -I/usr/local/athena/include
25
26#
27# Define RESOLV if your C library does not include support
28# for Hesiod and/or Named.
29#
30#RESOLV = -lhesiod -lresolv
31
32#
33# Define XLIBDIR if you have libraries not on the standard
34# search path.
35#
36#XLIBDIR = -L/usr/local/athena/lib
37
38#
39# Define DBM if your C library does not include
40# support for gdbm and/or ndbm.
41#
42#DBM = -lgdbm #-lndbm
43
44#
45# Define RPCLIB if your C library does not include
46# support for RPC
47#
48#RPCLIB = -lrpc
49
50#
51# Include support for Network Information Service (NIS)
52#
53#HAS_NIS_MAPS = -DHAS_NIS_MAPS
54
55#
56# Include support for file maps
57#
58HAS_FILE_MAPS = -DHAS_FILE_MAPS
59
60#
61# Include support for Hesiod
62#
63#HAS_HESIOD_MAPS = -DHAS_HESIOD_MAPS
64
65#
66# Include support for /etc/passwd
67#
68HAS_PASSWD_MAPS = -DHAS_PASSWD_MAPS
69
70#
71# Include support for mountd
72# Not released - design not complete...
73#
74#HAS_MOUNTD_MAPS = -DHAS_MOUNTD_MAPS
75
76#
77# Include support for ndbm.
78# This removes support for gdbm and is only supported
79# if your operating system supports ndbm
80#
81#HAS_NDBM_MAPS = -DHAS_NDBM_MAPS
82
83
84##############################################################
85# Do NOT edit the following lines
86#
87CONFIG = ${XINCLUDE} ${HAS_NIS_MAPS} ${HAS_FILE_MAPS} ${HAS_HESIOD_MAPS} \
88		${HAS_NDBM_MAPS} ${HAS_MOUNTD_MAPS} ${HAS_PASSWD_MAPS}
89