Home | History | Annotate | Line # | Download | only in radeondrm
Makefile revision 1.8
      1 # $NetBSD: Makefile,v 1.8 2010/05/27 07:27:35 mrg 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 
     10 SRCS=	radeon_drv.c
     11 # XXX this one should be in a sub-driver to share with r128drm
     12 SRCS+=	ati_pcigart.c
     13 SRCS+=	r300_cmdbuf.c
     14 SRCS+=	r600_cp.c
     15 SRCS+=	r600_blit.c
     16 SRCS+=	radeon_cp.c
     17 SRCS+=	radeon_cs.c
     18 SRCS+=	radeon_irq.c
     19 SRCS+=	radeon_mem.c
     20 SRCS+=	radeon_state.c
     21 
     22 CPPFLAGS+=	-I${S}/external/bsd/drm/dist/bsd-core \
     23 		-I${S}/external/bsd/drm/dist/shared-core
     24 
     25 .include <bsd.kmodule.mk>
     26