diff options
author | daryll <daryll> | 1999-12-05 01:15:28 +0000 |
---|---|---|
committer | daryll <daryll> | 1999-12-05 01:15:28 +0000 |
commit | 98a9d17c5ef18d418ea7769f3f1932ec7f98c3c3 (patch) | |
tree | 4eac8180cf9fecb02a80788c5c130c7af9dcf990 /xc/programs/Xserver/hw/xfree86/drivers/Imakefile | |
parent | 098a32797880417928879c9d992010ae12f53b94 (diff) |
Initial revision
Diffstat (limited to 'xc/programs/Xserver/hw/xfree86/drivers/Imakefile')
-rw-r--r-- | xc/programs/Xserver/hw/xfree86/drivers/Imakefile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/xc/programs/Xserver/hw/xfree86/drivers/Imakefile b/xc/programs/Xserver/hw/xfree86/drivers/Imakefile new file mode 100644 index 000000000..e15b1a895 --- /dev/null +++ b/xc/programs/Xserver/hw/xfree86/drivers/Imakefile @@ -0,0 +1,54 @@ +XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/drivers/Imakefile,v 1.13 1999/08/29 12:20:57 dawes Exp $ + +#define IHaveModules +#include <Server.tmpl> +#define IHaveSubdirs + +SUBDIRS = XF86CardDrivers +DRIVERS = XF86CardDrivers + +#ifndef OS2Architecture +OBJS = `cat driver.list` +#else +OBJS = al2101/?*.o mx/?*.o oak/?*.o realtek/?*.o sis/?*.o trident/?*.o \ + ali/?*.o apm/?*.o apollo/?*.o ark/?*.o ati/?*.o chips/?*.o \ + cirrus/?*.o cl64xx/?*.o compaq/?*.o et3000/?*.o glint/?*.o \ + gvga/?*.o hercules/?*.o hgc1280/?*.o mga/?*.o ncr/?*.o \ + nv/?*.o s3_pio/?*.o s3_newmmio/?*.o sigma/?*.o tseng/?*.o \ + vga/?*.o video7/?*.o wd/?*.o i740/?*.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) + |