mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
39cd66209d
Having -Werror in the omapdrm Makefile makes development and debugging a PITA. Let's remove it. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
26 lines
481 B
Makefile
26 lines
481 B
Makefile
#
|
|
# Makefile for the drm device driver. This driver provides support for the
|
|
# Direct Rendering Infrastructure (DRI)
|
|
#
|
|
|
|
obj-y += dss/
|
|
obj-y += displays/
|
|
|
|
ccflags-y := -Iinclude/drm
|
|
omapdrm-y := omap_drv.o \
|
|
omap_irq.o \
|
|
omap_debugfs.o \
|
|
omap_crtc.o \
|
|
omap_plane.o \
|
|
omap_encoder.o \
|
|
omap_connector.o \
|
|
omap_fb.o \
|
|
omap_gem.o \
|
|
omap_gem_dmabuf.o \
|
|
omap_dmm_tiler.o \
|
|
tcm-sita.o
|
|
|
|
omapdrm-$(CONFIG_DRM_FBDEV_EMULATION) += omap_fbdev.o
|
|
|
|
obj-$(CONFIG_DRM_OMAP) += omapdrm.o
|