bsd.lib.mk (7f3dea244c40159a41ab22da77a434d7c5b5e85a) | bsd.lib.mk (fccf86c1a443ed9e2359c8a05e6ec462078e5629) |
---|---|
1# from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 2# $FreeBSD$ 3# 4 5.if !target(__initialized__) 6__initialized__: 7.if exists(${.CURDIR}/../Makefile.inc) 8.include "${.CURDIR}/../Makefile.inc" --- 245 unchanged lines hidden (view full) --- 254.if defined(DPADD) && !empty(DPADD) 255 echo ${SHLIB_NAME}: ${DPADD} >> ${DEPENDFILE} 256.endif 257.endif 258.endif 259 260.if !target(install) 261.if !target(beforeinstall) | 1# from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91 2# $FreeBSD$ 3# 4 5.if !target(__initialized__) 6__initialized__: 7.if exists(${.CURDIR}/../Makefile.inc) 8.include "${.CURDIR}/../Makefile.inc" --- 245 unchanged lines hidden (view full) --- 254.if defined(DPADD) && !empty(DPADD) 255 echo ${SHLIB_NAME}: ${DPADD} >> ${DEPENDFILE} 256.endif 257.endif 258.endif 259 260.if !target(install) 261.if !target(beforeinstall) |
262beforeinstall: | 262beforeinstall: _includeinstall |
263.endif 264 | 263.endif 264 |
265_includeinstall: 266.if defined(INCS) 267.for header in ${INCS} 268 cd ${.CURDIR} && \ 269 ${INSTALL} -C -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \ 270 ${header} ${DESTDIR}${INCDIR} 271 272.endfor 273.endif 274 |
|
265.if defined(PRECIOUSLIB) && !defined(NOFSCHG) 266SHLINSTALLFLAGS+= -fschg 267.endif 268 269_INSTALLFLAGS:= ${INSTALLFLAGS} 270.for ie in ${INSTALLFLAGS_EDIT} 271_INSTALLFLAGS:= ${_INSTALLFLAGS${ie}} 272.endfor --- 87 unchanged lines hidden --- | 275.if defined(PRECIOUSLIB) && !defined(NOFSCHG) 276SHLINSTALLFLAGS+= -fschg 277.endif 278 279_INSTALLFLAGS:= ${INSTALLFLAGS} 280.for ie in ${INSTALLFLAGS_EDIT} 281_INSTALLFLAGS:= ${_INSTALLFLAGS${ie}} 282.endfor --- 87 unchanged lines hidden --- |