OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [drivers/] [char/] [drm-4.0/] [Makefile] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1275 phoenix
#
2
# Makefile for the drm device driver.  This driver provides support for
3
# the Direct Rendering Infrastructure (DRI) in XFree86 4.x.
4
#
5
 
6
O_TARGET        := drm.o
7
 
8
 
9
list-multi  := drmlib.o gamma.o tdfx.o r128.o ffb.o mga.o i810.o
10
gamma-objs  := gamma_drv.o  gamma_dma.o
11
tdfx-objs   := tdfx_drv.o                 tdfx_context.o
12
r128-objs   := r128_drv.o   r128_cce.o    r128_context.o r128_bufs.o r128_state.o
13
ffb-objs    := ffb_drv.o                  ffb_context.o
14
mga-objs    := mga_drv.o    mga_dma.o     mga_context.o  mga_bufs.o  mga_state.o
15
i810-objs   := i810_drv.o   i810_dma.o    i810_context.o i810_bufs.o
16
radeon-objs := radeon_drv.o radeon_cp.o   radeon_context.o radeon_bufs.o radeon_state.o
17
 
18
drmlib-objs     := init.o memory.o proc.o auth.o context.o drawable.o bufs.o \
19
                        lists.o lock.o ioctl.o fops.o vm.o dma.o ctxbitmap.o
20
 
21
ifneq ($(CONFIG_AGP),)
22
ifneq ($(CONFIG_AGP),n)
23
drmlib-objs     += agpsupport.o
24
endif
25
endif
26
 
27
obj-$(CONFIG_DRM40_GAMMA)       += gamma.o      drmlib.o
28
obj-$(CONFIG_DRM40_TDFX)        += tdfx.o       drmlib.o
29
obj-$(CONFIG_DRM40_R128)        += r128.o       drmlib.o
30
obj-$(CONFIG_DRM40_RADEON)      += radeon.o     drmlib.o
31
obj-$(CONFIG_DRM40_FFB)         += ffb.o        drmlib.o
32
obj-$(CONFIG_DRM40_MGA)         += mga.o        drmlib.o
33
obj-$(CONFIG_DRM40_I810)        += i810.o       drmlib.o
34
 
35
 
36
include $(TOPDIR)/Rules.make
37
 
38
drmlib.o: $(drmlib-objs)
39
        $(LD) -r -o $@ $(drmlib-objs)
40
 
41
gamma.o: $(gamma-objs)
42
        $(LD) -r -o $@ $(gamma-objs)
43
 
44
tdfx.o: $(tdfx-objs)
45
        $(LD) -r -o $@ $(tdfx-objs)
46
 
47
mga.o: $(mga-objs)
48
        $(LD) -r -o $@ $(mga-objs)
49
 
50
i810.o: $(i810-objs)
51
        $(LD) -r -o $@ $(i810-objs)
52
 
53
r128.o: $(r128-objs)
54
        $(LD) -r -o $@ $(r128-objs)
55
 
56
radeon.o: $(radeon-objs)
57
        $(LD) -r -o $@ $(radeon-objs)
58
 
59
ffb.o: $(ffb-objs)
60
        $(LD) -r -o $@ $(ffb-objs)

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.