blob: 795ed19876c802b30f7a2af8e63300df5f2f0d03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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) \
`pkg-config --cflags-only-I pixman-1`
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))
|