971bb1a587
Change-Id: Ib11d8659485a444797bf3a2118182a1d4e316b50
67 lines
969 B
Makefile
67 lines
969 B
Makefile
# $NetBSD: Makefile,v 1.5 2011/02/24 08:15:13 mrg Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= xcb
|
|
.PATH: ${X11SRCDIR.${LIB}}/src
|
|
.PATH: ${X11SRCDIR.${LIB}}
|
|
.PATH: ${.CURDIR}/../files
|
|
|
|
SRCS= xcb_auth.c \
|
|
xcb_conn.c \
|
|
xcb_ext.c \
|
|
xcb_in.c \
|
|
xcb_list.c \
|
|
xcb_out.c \
|
|
xcb_util.c \
|
|
xcb_xid.c
|
|
|
|
SRCS+= xproto.c \
|
|
bigreq.c \
|
|
xc_misc.c
|
|
|
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
|
CPPFLAGS+= -I${X11SRCDIR.${LIB}}/../include
|
|
#CPPFLAGS+= -I${.CURDIR}/../files
|
|
CPPFLAGS+= -I${DESTDIR}${X11INCDIR}/xcb
|
|
|
|
LIBDPLIBS=\
|
|
Xau ${.CURDIR}/../../libXau \
|
|
Xdmcp ${.CURDIR}/../../libXdmcp
|
|
|
|
NOMAN= # defined
|
|
|
|
PKGDIST= xcb
|
|
|
|
INCSDIR=${X11INCDIR}/xcb
|
|
INCS= \
|
|
bigreq.h \
|
|
composite.h \
|
|
damage.h \
|
|
dpms.h \
|
|
dri2.h \
|
|
glx.h \
|
|
randr.h \
|
|
record.h \
|
|
render.h \
|
|
res.h \
|
|
screensaver.h \
|
|
shape.h \
|
|
shm.h \
|
|
sync.h \
|
|
xc_misc.h \
|
|
xcb.h \
|
|
xcbext.h \
|
|
xevie.h \
|
|
xf86dri.h \
|
|
xfixes.h \
|
|
xinerama.h \
|
|
xinput.h \
|
|
xproto.h \
|
|
xselinux.h \
|
|
xtest.h \
|
|
xv.h \
|
|
xvmc.h
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.lib.mk>
|