Fixed bitrot in DPADD in previous commit.

Fixed some style bugs (mainly disorder).
This commit is contained in:
Bruce Evans 2001-07-30 11:16:39 +00:00
parent 13c05935fa
commit 0c593a5078
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=80628
2 changed files with 8 additions and 12 deletions

View File

@ -1,13 +1,11 @@
# $FreeBSD$
PROG= chkey
SRCS= chkey.c update.c generic.c
.PATH: ${.CURDIR}/../newkey
PROG= chkey
SRCS= chkey.c generic.c update.c
CFLAGS+=-DYP
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBGMP}
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBCRYPTO}
LDADD= -lrpcsvc -lmp -lcrypto
.include <bsd.prog.mk>

View File

@ -1,13 +1,11 @@
# $FreeBSD$
PROG= newkey
SRCS= newkey.c update.c generic.c
MAN= newkey.8
# Later
PROG= newkey
SRCS= generic.c newkey.c update.c
MAN= newkey.8
# For later:
#CFLAGS+= -DYP
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBGMP}
DPADD= ${LIBRPCSVC} ${LIBMP} ${LIBCRYPTO}
LDADD= -lrpcsvc -lmp -lcrypto
.include <bsd.prog.mk>