blob: 20ee055c59c73f5d0768e441668c5da275a02110 (
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
|
XCOMM
XCOMM This is an Imakefile for the cg14 driver.
XCOMM
XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg14/Imakefile,v 1.2 2001/01/24 00:06:28 dawes Exp $
#define IHaveModules
#include <Server.tmpl>
SRCS = cg14_driver.c
OBJS = cg14_driver.o
#if defined(XF86DriverSDK)
INCLUDES = -I. -I../../include
#else
INCLUDES = -I. -I$(XF86COMSRC) -I$(XF86OSSRC) \
-I$(SERVERSRC)/mfb -I$(SERVERSRC)/mi \
-I$(SERVERSRC)/Xext -I$(SERVERSRC)/cfb \
-I$(XF86SRC)/ramdac \
-I$(FONTINCSRC) -I$(SERVERSRC)/include -I$(XINCLUDESRC) \
-I$(EXTINCSRC)
#endif
#if MakeHasPosixVariableSubstitutions
SubdirLibraryRule($(OBJS))
#endif
ModuleObjectRule()
ObjectModuleTarget(suncg14,$(OBJS))
InstallObjectModule(suncg14,$(MODULEDIR),drivers)
#if !defined(XF86DriverSDK)
InstallModuleManPage(suncg14)
#endif
DependTarget()
|