freebsd-dev/libexec/rexecd/Makefile
Nate Williams 50dfa3861b Don't rely on the shared library bringing in libmd, do it explicitly.
Change the library order so libcrypt is the last library in the list.
libskey contains references to _crypt and can't resolve it unless
-lcrypt occurs after it in the link command.  This only occurs when
linking statically.
1995-03-18 06:50:00 +00:00

11 lines
174 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/4/93
PROG= rexecd
MAN8= rexecd.8
CFLAGS+= -DSKEY
DPADD= ${LIBSKEY} ${LIBMD} ${LIBCRYPT}
LDADD= -lskey -lmd -lcrypt
.include <bsd.prog.mk>