1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/security/heimdal/files/kpasswdd-Makefile
Hiroki Sato 475cf4ae74 - Add LICENSE.
- Build kcm by default.
- Use gssapi.mk.
- Use ${opt}_* variables instead of .if ${PORT_OPTIONS:Mopt} wherever possible.
- Use /var/heimdal as $hdbdir for compatibility with Heimdal in base.
- Merge pkg-plist.* into pkg-plist.
- Remove lines that are no longer valid.
- Remove stale kdc.sh.  rc.d scripts in base system work with this port.
2014-08-30 12:44:54 +00:00

18 lines
446 B
Plaintext

# $FreeBSD$
all: kpasswdd-cracklib.so
kpasswdd-cracklib.so: kpasswdd-cracklib.c
${CC} ${CFLAGS} -fPIC -shared \
-DLOCALBASE=\"${LOCALBASE}\" \
-I${LOCALBASE}/include -I./include \
-o ${.TARGET} ${.ALLSRC} \
-lcrack -L${LOCALBASE}/lib
install-strip: install
install: ${DESTDIR}${PREFIX}/lib/kpasswdd-cracklib.so
${DESTDIR}${PREFIX}/lib/kpasswdd-cracklib.so: kpasswdd-cracklib.so
${BSD_INSTALL_LIB} ${.ALLSRC} ${.TARGET}