123456789101112131415161718192021222324252627282930313233 |
- obj-y := gpu_sysfs.o
- # Common files.
- gpu_sysfs-y := gpu_sysfs_main.o \
- gpu_sysfs_util.o
- # Platform specific files.
- # ==================================
- # Start --------- Qualcomm ---------
- ifeq ($(CONFIG_MSM_KGSL),y)
- gpu_sysfs-y += gpu_sysfs_target_kgsl.o
- # Verify: target specific file is defined.
- GPU_SYSFS_TARGET_FILE_DEFINED=1
- endif
- # End ---------- Qualcomm ----------
- # ==================================
- # ==================================
- # Generate error if the TARGET
- # specific file is not defined OR
- # picked using the PLATFORM configs.
- ifndef GPU_SYSFS_TARGET_FILE_DEFINED
- $(warning **** Make sure target file is defined. \
- Check the TARGET and GPU configs in Makefile and Kernel Config. \
- Module won't work without target file. ****)
- endif
|