# Contributed by a customer to compile on Unixware

# Use BSD compatible compiler
CC = /usr/ucb/cc
COPT = -O
# use -lgen library for vsyslog, crypt, getspnam, openlog, closelog
LIBS = $(RADLIBS) -lgen
# for some reason the unixware compiler won't write a.out to the right
# place, instead it ignores the -o and write's to the current
# directory... then the compile fails because the relevant object file
# can't be found.
OBJDIR = .


