mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-23 10:58:16 +02:00
code. Remove the "drv" from sisdrv, as it's unnecessary. Use the
drm_pci functions in i915 instead of per-os implementations of the
same. Avoid whitespace within fields in drm_pciids.txt (one of the r300
definitions), since it breaks the bsd pciids script. Tested on sis,
mga, r128. i915 needs more work.
71 lines
1.1 KiB
Makefile
71 lines
1.1 KiB
Makefile
SHARED= ../shared-core
|
|
SHAREDFILES= drm.h \
|
|
drm_sarea.h \
|
|
i915.h \
|
|
i915_dma.c \
|
|
i915_drm.h \
|
|
i915_drv.h \
|
|
i915_irq.c \
|
|
i915_mem.c \
|
|
mach64.h \
|
|
mach64_dma.c \
|
|
mach64_drm.h \
|
|
mach64_drv.h \
|
|
mach64_irq.c \
|
|
mach64_state.c \
|
|
mga.h \
|
|
mga_dma.c \
|
|
mga_drm.h \
|
|
mga_drv.h \
|
|
mga_irq.c \
|
|
mga_state.c \
|
|
mga_ucode.h \
|
|
mga_warp.c \
|
|
r128.h \
|
|
r128_cce.c \
|
|
r128_drm.h \
|
|
r128_drv.h \
|
|
r128_irq.c \
|
|
r128_state.c \
|
|
radeon.h \
|
|
radeon_cp.c \
|
|
radeon_drm.h \
|
|
radeon_drv.h \
|
|
radeon_irq.c \
|
|
radeon_mem.c \
|
|
radeon_state.c \
|
|
sis.h \
|
|
sis_drm.h \
|
|
sis_drv.h \
|
|
sis_ds.c \
|
|
sis_ds.h \
|
|
sis_mm.c \
|
|
tdfx_drv.h \
|
|
via.h \
|
|
via_drm.h \
|
|
via_drv.c \
|
|
via_drv.h \
|
|
via_ds.c \
|
|
via_ds.h \
|
|
via_irq.c \
|
|
via_map.c \
|
|
via_mm.c \
|
|
via_mm.h \
|
|
via_3d_reg.h \
|
|
via_dma.c
|
|
|
|
SUBDIR = drm i915 mach64 mga r128 radeon sis tdfx
|
|
|
|
CLEANFILES+= ${SHAREDFILES}
|
|
|
|
.include <bsd.obj.mk>
|
|
|
|
depend: drm_pciids.h ${SHAREDFILES}
|
|
all: drm_pciids.h ${SHAREDFILES}
|
|
|
|
drm_pciids.h: ${SHARED}/drm_pciids.txt
|
|
sh ../scripts/create_bsd_pci_lists.sh < ${SHARED}/drm_pciids.txt
|
|
|
|
${SHAREDFILES}:
|
|
ln -sf ${SHARED}/$@ $@
|
|
|