blob: c8f4b799f8ebc799292d6e85884c2ae4bd9f002a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/drivers/Imakefile,v 1.21 2001/04/05 19:29:43 dawes Exp $
#define IHaveModules
#include <Server.tmpl>
#define IHaveSubdirs
SUBDIRS = XF86CardDrivers
DRIVERS = XF86CardDrivers
#ifndef OS2Architecture
OBJS = `cat driver.list`
#else
OBJS = apm/?*_drv.o ati/?*_drv.o chips/?*_drv.o cirrus/?*_drv.o \
cyrix/?*_drv.o glint/?*_drv.o i128/?*_drv.o i740/?*_drv.o \
i810/?*_drv.o imstt/?*_drv.o mga/?*_drv.o neomagic/?*_drv.o \
nv/?*_drv.o rendition/?*_drv.o s3virge/?*_drv.o sis/?*_drv.o \
tdfx/?*_drv.o tga/?*_drv.o trident/?*_drv.o tseng/?*_drv.o \
vesa/?*_drv.o vga/?*_drv.o siliconmotion/?*.drv.o vmware/?*_drv.o
#endif
#if DoLoadableServer
MakeSubdirs($(SUBDIRS))
#endif
#if MakeHasPosixVariableSubstitutions
DONES = $(SUBDIRS:%=%/DONE)
#if HasGnuMake || HasBsdMake
$(DONES): $(SUBDIRS)
#endif
#if !DoLoadableServer
NormalDepLibraryTarget(driver,$(SUBDIRS) $(DONES) driver.list,$(OBJS))
#endif
#else
#if !DoLoadableServer
NormalDepLibraryTarget(driver,$(SUBDIRS) driver.list,$(OBJS))
#endif
#endif
INCLUDES = -I$(XF86COMSRC) -I$(XF86OSSRC) -I$(SERVERSRC)/include \
-I$(XINCLUDESRC)
#if !DoLoadableServer
ConfigTargetNoDepend(drvConf,$(ICONFIGFILES),confdrv.SHsuf,$(DRIVERS))
DriverObjectList($(DRIVERS),driver.list)
#endif
NormalLibraryObjectRule()
ForceSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
InstallDriverSDKNonExecFile(Imakefile,$(DRIVERSDKDIR)/drivers)
|