mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-16 02:36:56 -04:00
52 lines
1010 B
Makefile
52 lines
1010 B
Makefile
# $NetBSD: Makefile,v 1.7 2015/06/24 22:20:25 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= pciaccess
|
|
.PATH: ${X11SRCDIR.${LIB}}/src
|
|
.PATH: ${X11SRCDIR.${LIB}}/include
|
|
|
|
XORG_MACHINE_ARCH?=${MACHINE_ARCH}
|
|
|
|
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 \
|
|
netbsd_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 ${XORG_MACHINE_ARCH} == "i386" || ${XORG_MACHINE_ARCH} == "x86_64"
|
|
CPPFLAGS+= -DHAVE_MTRR
|
|
.endif
|
|
|
|
.if ${XORG_MACHINE_ARCH} == "i386"
|
|
LDADD+= -li386
|
|
DPADD+= ${LIBI386}
|
|
.endif
|
|
|
|
.if ${XORG_MACHINE_ARCH} == "x86_64"
|
|
LDADD+= -lx86_64
|
|
DPADD+= ${LIBX86_64}
|
|
.endif
|
|
|
|
.include <bsd.x11.mk>
|
|
.include <bsd.lib.mk>
|