6e2578e4c4
happened as it was working around problems elsewhere (ie: binutils/ld not doing the right thing according to the ELF design). libcrypt has been adjusted to not need the runtime -lmd. It's still not quite right (ld is supposed to work damnit) but at least it doesn't impact all the users of libcrypt in Marcel's cross-build model.
26 lines
406 B
Makefile
26 lines
406 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= login
|
|
MAN1= login.1
|
|
MAN5= login.access.5
|
|
SRCS= login.c login_access.c login_fbtab.c
|
|
|
|
CFLAGS+=-Wall -DLOGIN_ACCESS -DLOGALL
|
|
|
|
DPADD= ${LIBUTIL} ${LIBCRYPT}
|
|
LDADD= -lutil -lcrypt
|
|
|
|
.if defined(NOPAM)
|
|
CFLAGS+= -DNO_PAM
|
|
.else
|
|
DPADD+= ${LIBPAM}
|
|
LDADD+= ${MINUSLPAM}
|
|
.endif
|
|
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
NEED_LIBNAMES= yes
|
|
|
|
.include <bsd.prog.mk>
|