blob: 39106ac1324739cfaa5cd0a83b769bd0c6184c79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#define IHaveModules
#include <Server.tmpl>
SRCS = cw.c cw_ops.c cw_render.c
OBJS = cw.o cw_ops.o cw_render.o
INCLUDES = -I../../mi -I../../fb -I../../render -I../../composite \
-I../../include -I$(XINCLUDESRC) $(EXTRAINCLUDES) \
-I$(EXTINCSRC)
LINTLIBS = ../../dix/llib-ldix.ln ../../os/llib-los.ln \
../../mi/llib-lmi.ln
NormalLibraryObjectRule()
NormalLibraryTarget(cw,$(OBJS))
LintLibraryTarget(cw,$(SRCS))
NormalLintTarget($(SRCS))
DependTarget()
InstallDriverSDKNonExecFile(cw.h,$(DRIVERSDKINCLUDEDIR))
|