Makefile revision 259016
1254885Sdumbbell# $FreeBSD: head/sys/modules/drm2/radeonkms/Makefile 259016 2013-12-05 22:38:53Z ray $
2254885Sdumbbell
3254885Sdumbbell.PATH:	${.CURDIR}/../../../dev/drm2/radeon
4254885Sdumbbell
5254885SdumbbellKMOD	= radeonkms
6254885SdumbbellSRCS	=								\
7254885Sdumbbell	rn50_reg_safe.h							\
8254885Sdumbbell	r100_reg_safe.h							\
9254885Sdumbbell	r200_reg_safe.h							\
10254885Sdumbbell	rv515_reg_safe.h						\
11254885Sdumbbell	r300_reg_safe.h							\
12254885Sdumbbell	r420_reg_safe.h							\
13254885Sdumbbell	rs600_reg_safe.h						\
14254885Sdumbbell	r600_reg_safe.h							\
15254885Sdumbbell	evergreen_reg_safe.h						\
16254885Sdumbbell	cayman_reg_safe.h
17254885SdumbbellSRCS	+=								\
18254885Sdumbbell	radeon_acpi.c							\
19254885Sdumbbell	radeon_agp.c							\
20254885Sdumbbell	radeon_asic.c							\
21254885Sdumbbell	radeon_atombios.c						\
22254885Sdumbbell	radeon_atpx_handler.c						\
23254885Sdumbbell	radeon_benchmark.c						\
24254885Sdumbbell	radeon_bios.c							\
25254885Sdumbbell	radeon_clocks.c							\
26254885Sdumbbell	radeon_combios.c						\
27254885Sdumbbell	radeon_connectors.c						\
28254885Sdumbbell	radeon_cp.c							\
29254885Sdumbbell	radeon_cs.c							\
30254885Sdumbbell	radeon_cursor.c							\
31254885Sdumbbell	radeon_device.c							\
32254885Sdumbbell	radeon_display.c						\
33254885Sdumbbell	radeon_drv.c							\
34254885Sdumbbell	radeon_encoders.c						\
35254885Sdumbbell	radeon_fb.c							\
36254885Sdumbbell	radeon_fence.c							\
37254885Sdumbbell	radeon_gart.c							\
38254885Sdumbbell	radeon_gem.c							\
39254885Sdumbbell	radeon_i2c.c							\
40254885Sdumbbell	radeon_irq.c							\
41254885Sdumbbell	radeon_irq_kms.c						\
42254885Sdumbbell	radeon_kms.c							\
43254885Sdumbbell	radeon_legacy_crtc.c						\
44254885Sdumbbell	radeon_legacy_encoders.c					\
45254885Sdumbbell	radeon_legacy_tv.c						\
46254885Sdumbbell	radeon_mem.c							\
47254885Sdumbbell	radeon_object.c							\
48254885Sdumbbell	radeon_pm.c							\
49254885Sdumbbell	radeon_ring.c							\
50254885Sdumbbell	radeon_sa.c							\
51254885Sdumbbell	radeon_semaphore.c						\
52254885Sdumbbell	radeon_state.c							\
53254885Sdumbbell	radeon_test.c							\
54254885Sdumbbell	radeon_ttm.c							\
55254885Sdumbbell	atom.c								\
56254885Sdumbbell	atombios_crtc.c							\
57254885Sdumbbell	atombios_dp.c							\
58254885Sdumbbell	atombios_encoders.c						\
59254885Sdumbbell	atombios_i2c.c							\
60254885Sdumbbell	r100.c								\
61254885Sdumbbell	r200.c								\
62254885Sdumbbell	r300.c								\
63254885Sdumbbell	r300_cmdbuf.c							\
64254885Sdumbbell	r420.c								\
65254885Sdumbbell	rs400.c								\
66254885Sdumbbell	rs600.c								\
67254885Sdumbbell	rs690.c								\
68254885Sdumbbell	rv515.c								\
69254885Sdumbbell	r520.c								\
70254885Sdumbbell	r600.c								\
71254885Sdumbbell	r600_audio.c							\
72254885Sdumbbell	r600_blit.c							\
73254885Sdumbbell	r600_blit_kms.c							\
74254885Sdumbbell	r600_blit_shaders.c						\
75254885Sdumbbell	r600_cp.c							\
76254885Sdumbbell	r600_cs.c							\
77254885Sdumbbell	r600_hdmi.c							\
78254885Sdumbbell	rv770.c								\
79254885Sdumbbell	evergreen.c							\
80254885Sdumbbell	evergreen_blit_kms.c						\
81254885Sdumbbell	evergreen_blit_shaders.c					\
82254885Sdumbbell	evergreen_cs.c							\
83254885Sdumbbell	evergreen_hdmi.c						\
84254885Sdumbbell	cayman_blit_shaders.c						\
85254885Sdumbbell	ni.c								\
86254885Sdumbbell	si.c								\
87254885Sdumbbell	si_blit_shaders.c
88254885Sdumbbell
89254885Sdumbbell#radeon_ioc32.c
90254885Sdumbbell#radeon_prime.c
91254885Sdumbbell#--radeon_trace_points.c
92254885Sdumbbell
93254885SdumbbellSRCS	+=								\
94254885Sdumbbell	opt_acpi.h							\
95254885Sdumbbell	opt_compat.h							\
96254885Sdumbbell	opt_drm.h							\
97254885Sdumbbell	acpi_if.h							\
98254885Sdumbbell	bus_if.h							\
99259016Sray	fb_if.h								\
100254885Sdumbbell	device_if.h							\
101254885Sdumbbell	iicbb_if.h							\
102254885Sdumbbell	iicbus_if.h							\
103254885Sdumbbell	pci_if.h
104254885Sdumbbell
105254885SdumbbellCFLAGS  += -I${.CURDIR}/../../../dev/drm2/radeon			\
106254885Sdumbbell	   -fms-extensions
107254885Sdumbbell
108254885Sdumbbell.include <bsd.kmod.mk>
109