50dfa3861b
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.
11 lines
174 B
Makefile
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>
|