blob: 113b2dec28af99a253116dc23ad68ba204598b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Add -DSHADOW to OPTFLAGS if you want to use have shadow passwords.
# Where to place things.
#PREFIX= /opt
PREFIX= /Users/bjc
BINDIR= ${PREFIX}/bin
SBINDIR= ${PREFIX}/sbin
DATADIR= ${PREFIX}/libdata/nast
INCDIR= ${PREFIX}/include
LIBDIR= ${PREFIX}/lib
SRCDIR= .
# Set this to NO if you don't want the perl library built.
PERL= NO
# Purify options
#PURIFY= purify
# MySQL library and include file location.
MYSQL_INCDIR= /usr/local/mysql/include
MYSQL_LIBDIR= /usr/local/mysql/lib
# Generic Database configuration.
DBUSER= \"root\"
DBPASS= NULL
DBHOST= NULL
DBNAME= \"password\"
DBTBL= \"master\"
DBSELECT= "\"SELECT %s FROM %s WHERE %s='%s'"\"
# Location of Objective C include files.
OBJCINC= -I/usr/include/objc
# Debugging flags.
DEBUGFLAGS= -g -DTEST -DVERBOSE -Wall -Werror
#DEBUGFLAGS= -DTEST -DVERBOSE
#PROFFLAGS= -pg
# Optimization flags to the C compiler.
#OPTFLAGS= -O
|