79fe9eff8c
USE_XAW, a package Makefile may just include mk/xaw.buildlink.mk, which pulls in the correct buildlink.mk file depending on the value of XAW_TYPE. A package Makefile may also rely on LIBXAW being set to the correct libraries.
26 lines
691 B
Makefile
26 lines
691 B
Makefile
# $NetBSD: xaw.buildlink.mk,v 1.1 2001/08/23 04:24:21 jlam Exp $
|
|
#
|
|
# This Makefile fragment is included by packages that use Xaw.
|
|
#
|
|
# To use this Makefile fragment, simply:
|
|
#
|
|
# (1) Optionally set XAW_TYPE to the Xaw library desired, and
|
|
# (2) Include this Makefile fragment in the package Makefile.
|
|
|
|
.if !defined(XAW_BUILDLINK_MK)
|
|
XAW_BUILDLINK_MK= # defined
|
|
|
|
# Pull in setting for XAW_TYPE.
|
|
XAW_TYPE?= standard
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${XAW_TYPE} == "xpm"
|
|
.include "../../x11/Xaw-Xpm/buildlink.mk"
|
|
.elif ${XAW_TYPE} == "3d"
|
|
.include "../../x11/Xaw3d/buildlink.mk"
|
|
.else
|
|
LIBXAW?= -L${BUILDLINK_X11_DIR}/lib -lXaw
|
|
MAKE_ENV+= LIBXAW="${LIBXAW}"
|
|
.endif
|
|
|
|
.endif # XAW_BUILDLINK_MK
|