mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 09:39:26 -05:00
bsd.lib.mk and bsd.prog.mk already depend all objs on headers in SRCS if there is not yet a depend file. The headers in SRCS are never built or installed. After 'make depend' the header was already added as a proper dependency on the objects where needed. MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
21 lines
330 B
Makefile
21 lines
330 B
Makefile
# PAM module for SSH
|
|
# $FreeBSD$
|
|
|
|
SSHDIR= ${.CURDIR}/../../../../crypto/openssh
|
|
|
|
LIB= pam_ssh
|
|
MAN= pam_ssh.8
|
|
SRCS= pam_ssh.c
|
|
|
|
# required when linking with a dynamic libssh
|
|
SRCS+= roaming_dummy.c
|
|
|
|
WARNS?= 3
|
|
CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
|
|
SRCS+= ssh_namespace.h
|
|
|
|
LIBADD= ssh
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${SSHDIR}
|