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