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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
XCOMM
XCOMM $XConsortium: Imakefile,v 5.8 94/11/21 18:31:20 kaleb Exp $
XCOMM
XCOMM
XCOMM Copyright 1989, 1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
XCOMM
XCOMM All Rights Reserved
XCOMM
XCOMM Permission to use, copy, modify, and distribute this software and its
XCOMM documentation for any purpose and without fee is hereby granted,
XCOMM provided that the above copyright notice appear in all copies and that
XCOMM both that copyright notice and this permission notice appear in
XCOMM supporting documentation, and that the names of Sun Microsystems,
XCOMM and the X Consortium not be used in advertising or publicity
XCOMM pertaining to distribution of the software without specific, written
XCOMM prior permission.
XCOMM
XCOMM SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
XCOMM INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
XCOMM EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
XCOMM CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
XCOMM USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
XCOMM OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
XCOMM PERFORMANCE OF THIS SOFTWARE.
#include <Server.tmpl>
#ifndef PexDipexCDebugFlags
#define PexDipexCDebugFlags ServerCDebugFlags
#endif
RDR_STUBS = -DRENDER_CMDS
ST_STUBS = -DSTORE_CMDS
CDEBUGFLAGS = PexDipexCDebugFlags
DEFINES = PexDipexDefines
LINTLIBS = ../../../dix/llib-ldix.ln \
../../../os/llib-los.ln \
../../ddpex/mi/level4/llib-ldp4.ln \
../../ddpex/mi/shared/llib-ldps.ln \
../swap/llib-ldsw.ln \
../objects/llib-lobj.ln
PEXSRVINC = ../../include
INCLUDES = -I$(PEXSRVINC) -I$(INCLUDESRC) -I$(SERVERSRC)/include
SRCS = dipexParse.c dipexExt.c pexDump.c pexError.c dipexBuf.c pexUtils.c
OBJS = dipexParse.o dipexExt.o pexDump.o pexError.o dipexBuf.o pexUtils.o
PEX_DI_LIBNAME = libdidipex.a
NormalLibraryObjectRule()
NormalLibraryTarget(didipex,$(OBJS))
LintLibraryTarget(dsp,$(SRCS))
NormalLintTarget($(SRCS))
InstallLinkKitLibrary(didipex,$(LINKKITDIR)/lib)
DependTarget()
|