Home | History | Annotate | Line # | Download | only in radeondrm
Makefile revision 1.9
      1 # $NetBSD: Makefile,v 1.9 2011/08/28 15:40:50 jmcneill Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 .PATH:	${S}/external/bsd/drm/dist/bsd-core
      6 .PATH:	${S}/external/bsd/drm/dist/shared-core
      7 
      8 KMOD=   radeondrm
      9 IOCONF=	radeondrm.ioconf
     10 
     11 SRCS=	radeon_drv.c
     12 # XXX this one should be in a sub-driver to share with r128drm
     13 SRCS+=	ati_pcigart.c
     14 SRCS+=	r300_cmdbuf.c
     15 SRCS+=	r600_cp.c
     16 SRCS+=	r600_blit.c
     17 SRCS+=	radeon_cp.c
     18 SRCS+=	radeon_cs.c
     19 SRCS+=	radeon_irq.c
     20 SRCS+=	radeon_mem.c
     21 SRCS+=	radeon_state.c
     22 
     23 CPPFLAGS+=	-I${S}/external/bsd/drm/dist/bsd-core \
     24 		-I${S}/external/bsd/drm/dist/shared-core
     25 
     26 .include <bsd.kmodule.mk>
     27