#
# Makefile configuration.
#

WARNINGS=-Wall -W -Wpointer-arith -Wbad-function-cast -Wcast-qual \
	 -Wstrict-prototypes -Wmissing-prototypes \
	 -Wmissing-declarations -Wnested-externs -Winline -Wcast-align
# -Wwrite-strings        (Neither <arpa/ftp.h> nor bison output pass this)
# -Wshadow               (seems to produce only bogus warnings)
# -Wredundant-decls      (there are a number of such in Linux's /usr/include)

CC=gcc
CFLAGS=-O2 -pipe $(WARNINGS) -D__USE_BSD_SIGNAL
LDFLAGS=
LIBS=
YACC=bison -y

# Do you use shadow passwords?
#CFLAGS+=-DUSE_SHADOW

DAEMONMODE=755
MANMODE=644
SBINDIR=/usr/sbin
MANDIR=/usr/man
