freebsd-dev/usr.sbin/sup/supscan/Makefile
Bruce Evans 248e6ea0a3 Oops, the last change added an extra ${LIBSCRYPT} to ${DPADD}, but
it should have reordered the existing one (so that ${DPADD} can be
compared with ${LDADD}).

Use ${} consistently.
1997-01-10 05:18:23 +00:00

21 lines
401 B
Makefile

# $Id: Makefile,v 1.3 1996/09/05 17:16:06 bde Exp $
PROG= supscan
SRCS= supscan.c
NOMAN=
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= ${LIBOBJ}/libsup.a ${LIBCRYPT}
LDADD= -L${LIBOBJ} -lsup -lcrypt
.include <bsd.prog.mk>