Home | History | Annotate | Line # | Download | only in plugins
Makefile revision 1.1
      1  1.1  christos #	$NetBSD: Makefile,v 1.1 2022/03/06 17:50:19 christos Exp $
      2  1.1  christos 
      3  1.1  christos LIBISMODULE:=	yes
      4  1.1  christos .include <bsd.init.mk>
      5  1.1  christos 
      6  1.1  christos SHLIB_MAJOR=0
      7  1.1  christos LIB=	filter-aaaa
      8  1.1  christos SRCS=	filter-aaaa.c
      9  1.1  christos LIBDIR=	/usr/lib/named
     10  1.1  christos 
     11  1.1  christos DIST=${IDIST}/bin/plugins
     12  1.1  christos 
     13  1.1  christos .PATH: ${DIST}
     14  1.1  christos 
     15  1.1  christos .if ${MKPIC} != "no"
     16  1.1  christos .PRECIOUS: ${DESTDIR}${LIBDIR}/${LIB}.so.${SHLIB_MAJOR}
     17  1.1  christos libinstall:: ${DESTDIR}${LIBDIR}/${LIB}.so.${SHLIB_MAJOR}
     18  1.1  christos .else
     19  1.1  christos libinstall::
     20  1.1  christos .endif
     21  1.1  christos 
     22  1.1  christos .include <bsd.lib.mk>
     23  1.1  christos 
     24  1.1  christos ${DESTDIR}${LIBDIR}/${LIB}.so.${SHLIB_MAJOR}: ${LIB}.so.${SHLIB_FULLVERSION}
     25  1.1  christos 	${_MKTARGET_INSTALL}
     26  1.1  christos 	${INSTALL_FILE} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
     27  1.1  christos 	    ${.ALLSRC} ${.TARGET}
     28