summaryrefslogtreecommitdiff
path: root/lib/Makefile.sources
blob: 97685823894baacfba4c087492a05b0920b41003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
lib_source_list =	 	\
	debug.h			\
	drmtest.c		\
	drmtest.h		\
	i830_reg.h		\
	i915/gem_context.c	\
	i915/gem_context.h	\
	i915/gem_scheduler.c	\
	i915/gem_scheduler.h	\
	i915/gem_submission.c	\
	i915/gem_submission.h	\
	i915/gem_ring.h	\
	i915/gem_ring.c	\
	i915/gem_mman.c	\
	i915/gem_mman.h	\
	i915_3d.h		\
	i915_reg.h		\
	i915_pciids.h		\
	igt.h			\
	igt_debugfs.c		\
	igt_debugfs.h		\
	igt_device.c		\
	igt_device.h		\
	igt_aux.c		\
	igt_aux.h		\
	igt_color_encoding.c	\
	igt_color_encoding.h	\
	igt_edid.c		\
	igt_edid.h		\
	igt_gpu_power.c		\
	igt_gpu_power.h		\
	igt_gt.c		\
	igt_gt.h		\
	igt_gvt.c		\
	igt_gvt.h		\
	igt_halffloat.c		\
	igt_halffloat.h		\
	igt_matrix.c		\
	igt_matrix.h		\
	igt_primes.c		\
	igt_primes.h		\
	igt_rand.c		\
	igt_rand.h		\
	igt_rc.h		\
	igt_stats.c		\
	igt_stats.h		\
	igt_sysfs.c		\
	igt_sysfs.h		\
	igt_sysrq.c		\
	igt_sysrq.h		\
	igt_x86.h		\
	igt_x86.c		\
	igt_vgem.c		\
	igt_vgem.h		\
	instdone.c		\
	instdone.h		\
	intel_aub.h		\
	intel_batchbuffer.c	\
	intel_batchbuffer.h	\
	intel_chipset.c		\
	intel_chipset.h		\
	intel_device_info.c	\
	intel_os.c		\
	intel_io.h		\
	intel_mmio.c		\
	intel_reg.h		\
	ioctl_wrappers.c	\
	ioctl_wrappers.h	\
	media_fill.c		\
	media_fill.h            \
	media_spin.h		\
	media_spin.c		\
	gpgpu_fill.h		\
	gpgpu_fill.c		\
	gpu_cmds.h		\
	gpu_cmds.c		\
	gen7_media.h            \
	gen8_media.h            \
	rendercopy_i915.c	\
	rendercopy_i830.c	\
	gen4_render.h		\
	gen6_render.h		\
	gen7_render.h		\
	gen8_render.h		\
	gen9_render.h		\
	rendercopy_gen4.c	\
	rendercopy_gen6.c	\
	rendercopy_gen7.c	\
	rendercopy_gen8.c	\
	rendercopy_gen9.c	\
	rendercopy.h		\
	surfaceformat.h		\
	sw_sync.c		\
	sw_sync.h		\
	intel_reg_map.c		\
	intel_iosf.c		\
	igt_kms.c		\
	igt_kms.h		\
	igt_fb.c		\
	igt_fb.h		\
	igt_core.c		\
	igt_core.h		\
	igt_draw.c		\
	igt_draw.h		\
	igt_pm.c		\
	igt_pm.h		\
	igt_dummyload.c		\
	igt_dummyload.h		\
	uwildmat/uwildmat.h	\
	uwildmat/uwildmat.c	\
	igt_kmod.c		\
	igt_kmod.h		\
	igt_syncobj.c		\
	igt_syncobj.h		\
	igt_psr.c		\
	igt_psr.h		\
	igt_v3d.c		\
	igt_v3d.h		\
	igt_vc4.c		\
	igt_vc4.h		\
	igt_amd.c		\
	igt_amd.h		\
	$(NULL)

.PHONY: version.h.tmp

# leaving a space here to work around automake's conditionals
 ifeq ($(GIT_HASH),no)
$(IGT_LIB_PATH)/version.h.tmp:
	@echo '#define IGT_GIT_SHA1 "git"' >> $@
 else
$(IGT_LIB_PATH)/version.h.tmp:
	@touch $@
	@if test -d $(GPU_TOOLS_PATH)/.git; then \
		if which git > /dev/null 2>&1; then \
			cd $(GPU_TOOLS_PATH); \
			git log -n 1 --oneline | \
			sed 's/^\([^ ]*\) .*/#define IGT_GIT_SHA1 "g\1"/' ; \
		else \
			echo '#define IGT_GIT_SHA1 "NO-GIT"' ; \
		fi \
	else \
		echo '#define IGT_GIT_SHA1 "NOT-GIT"' ; \
	fi >> $@
 endif # GIT_HASH


$(IGT_LIB_PATH)/version.h: $(IGT_LIB_PATH)/version.h.tmp
	@if ! cmp -s $(IGT_LIB_PATH)/version.h.tmp $(IGT_LIB_PATH)/version.h; then \
		mv $(IGT_LIB_PATH)/version.h.tmp $(IGT_LIB_PATH)/version.h ; \
	else \
		rm $(IGT_LIB_PATH)/version.h.tmp ; \
	fi

BUILT_SOURCES = $(IGT_LIB_PATH)/version.h
CLEANFILES = $(IGT_LIB_PATH)/version.h $(IGT_LIB_PATH)/version.h.tmp