cd9a2f5c28
really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current.
22 lines
496 B
Makefile
22 lines
496 B
Makefile
# $Id: Makefile,v 1.3 1996/02/06 19:04:41 pst Exp $
|
|
|
|
PROG= supfilesrv
|
|
SRCS= supfilesrv.c
|
|
MAN8= supservers.8
|
|
MLINKS= supservers.8 supfilesrv.8 supservers.8 supscan.8
|
|
|
|
LIBSRC= ${.CURDIR}/../lib
|
|
COPTS+= -DVAR_TMP -DHAS_DAEMON -I${.CURDIR} -I${LIBSRC}
|
|
COPTS+= -DRENAMELOG=\"/var/log/sup.rename\"
|
|
|
|
.if exists(${.OBJDIR}/../lib)
|
|
LIBOBJ= ${.OBJDIR}/../lib
|
|
.else
|
|
LIBOBJ= ${LIBSRC}
|
|
.endif
|
|
|
|
DPADD+= $(LIBCRYPT) $(LIBOBJ)/libsup.a $(LIBUTIL)
|
|
LDADD+= -L${LIBOBJ} -lsup -lcrypt -lutil
|
|
|
|
.include <bsd.prog.mk>
|