blob: d345302d86e1f72e2fc931d89ed902a6e4523332 (
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
|
XCOMM
XCOMM This is an Imakefile for the cg3 driver.
XCOMM
XCOMM $XFree86:$
#define IHaveModules
#include <Server.tmpl>
SRCS = cg3_driver.c
OBJS = cg3_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(suncg3,$(OBJS))
InstallObjectModule(suncg3,$(MODULEDIR),drivers)
#if !defined(XF86DriverSDK)
CppManTarget(suncg3,)
InstallModuleManPage(suncg3)
#endif
DependTarget()
|