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.
This commit is contained in:
Bruce Evans 1997-01-10 05:18:23 +00:00
parent 7afeece433
commit 248e6ea0a3
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.4 1996/06/24 04:25:57 jkh Exp $
# $Id: Makefile,v 1.5 1996/09/05 17:15:48 bde Exp $
PROG= sup
SRCS= supcmain.c supcvers.c supcparse.c supcname.c supcmisc.c supcmeat.c
@ -13,7 +13,7 @@ LIBOBJ= ${.OBJDIR}/../lib
LIBOBJ= ${LIBSRC}
.endif
DPADD= $(LIBCRYPT) $(LIBOBJ)/libsup.a ${LIBCRYPT}
DPADD= ${LIBOBJ}/libsup.a ${LIBCRYPT}
LDADD= -L${LIBOBJ} -lsup -lcrypt
.include <bsd.prog.mk>

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.2 1996/06/24 04:26:03 jkh Exp $
# $Id: Makefile,v 1.3 1996/09/05 17:16:06 bde Exp $
PROG= supscan
SRCS= supscan.c
@ -14,7 +14,7 @@ LIBOBJ= ${.OBJDIR}/../lib
LIBOBJ= ${LIBSRC}
.endif
DPADD= $(LIBCRYPT) $(LIBOBJ)/libsup.a ${LIBCRYPT}
DPADD= ${LIBOBJ}/libsup.a ${LIBCRYPT}
LDADD= -L${LIBOBJ} -lsup -lcrypt
.include <bsd.prog.mk>