mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
f0c02c1b91
Move all timeline code under gt and rename to intel_gt prefix. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190621070811.7006-32-tvrtko.ursulin@linux.intel.com
33 lines
767 B
Makefile
33 lines
767 B
Makefile
# SPDX-License-Identifier: MIT
|
|
# Copyright © 2019 Intel Corporation
|
|
|
|
# Test the headers are compilable as standalone units
|
|
header_test := \
|
|
i915_active_types.h \
|
|
i915_debugfs.h \
|
|
i915_drv.h \
|
|
i915_gem_gtt.h \
|
|
i915_irq.h \
|
|
i915_params.h \
|
|
i915_priolist_types.h \
|
|
i915_reg.h \
|
|
i915_scheduler_types.h \
|
|
i915_utils.h \
|
|
intel_csr.h \
|
|
intel_drv.h \
|
|
intel_pm.h \
|
|
intel_runtime_pm.h \
|
|
intel_sideband.h \
|
|
intel_uncore.h \
|
|
intel_wakeref.h
|
|
|
|
quiet_cmd_header_test = HDRTEST $@
|
|
cmd_header_test = echo "\#include \"$(<F)\"" > $@
|
|
|
|
header_test_%.c: %.h
|
|
$(call cmd,header_test)
|
|
|
|
i915-$(CONFIG_DRM_I915_WERROR) += $(foreach h,$(header_test),$(patsubst %.h,header_test_%.o,$(h)))
|
|
|
|
clean-files += $(foreach h,$(header_test),$(patsubst %.h,header_test_%.c,$(h)))
|