blob: ac64a1128506f2c739774cc91f32564e98dbde43 (
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 tcx driver.
XCOMM
XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suntcx/Imakefile,v 1.2 2001/01/24 00:06:31 dawes Exp $
#define IHaveModules
#include <Server.tmpl>
SRCS = tcx_driver.c tcx_cursor.c
OBJS = tcx_driver.o tcx_cursor.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(suntcx,$(OBJS))
InstallObjectModule(suntcx,$(MODULEDIR),drivers)
#if !defined(XF86DriverSDK)
InstallModuleManPage(suntcx)
#endif
DependTarget()
|