971bb1a587
Change-Id: Ib11d8659485a444797bf3a2118182a1d4e316b50
51 lines
1,006 B
Makefile
51 lines
1,006 B
Makefile
# $NetBSD: Makefile,v 1.6 2011/01/14 16:04:49 jmcneill Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= pciaccess
|
|
.PATH: ${X11SRCDIR.${LIB}}/src
|
|
.PATH: ${X11SRCDIR.${LIB}}/include
|
|
|
|
SRCS= common_bridge.c \
|
|
common_io.c \
|
|
common_iterator.c \
|
|
common_init.c \
|
|
common_interface.c \
|
|
common_capability.c \
|
|
common_device_name.c \
|
|
common_map.c \
|
|
common_vgaarb_stub.c \
|
|
minix_pci.c
|
|
|
|
CPPFLAGS+= ${X11FLAGS} -I${X11SRCDIR.${LIB}}/include -DHAVE_ZLIB \
|
|
-DHAVE_STRING_H -DHAVE_STDINT_H -DHAVE_INTTYPES_H \
|
|
-DPCIIDS_PATH=\"${X11ROOTDIR}/share/pciids\"
|
|
|
|
COPTS.common_init.c= -Wno-error
|
|
|
|
INCS= pciaccess.h
|
|
INCSDIR=${X11INCDIR}
|
|
|
|
PKGDIST= ${LIB}
|
|
|
|
LDADD+= -lpci -lz
|
|
DPADD+= ${LIBPCI} ${LIBZ}
|
|
|
|
.if !defined(__MINIX)
|
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
|
CPPFLAGS+= -DHAVE_MTRR
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
LDADD+= -li386
|
|
DPADD+= ${LIBI386}
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "x86_64"
|
|
LDADD+= -lx86_64
|
|
DPADD+= ${LIBX86_64}
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.lib.mk>
|