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
|
XCOMM
XCOMM $XConsortium: Imakefile,v 5.12 93/09/29 22:49:02 rws 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 <Library.tmpl>
#ifndef PexPhigsCDebugFlags
#define PexPhigsCDebugFlags LibraryCDebugFlags
#endif
CCOPTIONS = PexCCOptions
CDEBUGFLAGS = PexPhigsCDebugFlags
DEFINES = PexPhigsDefines
CSRCS = css_el.c css_inq.c css_set.c css_str.c css_ini.c css_pr.c \
css_stb.c css_ws.c
OBJS = css_el.o css_inq.o css_set.o css_str.o css_ini.o css_pr.o \
css_stb.o css_ws.o
HSRCS = css_priv.h
SRCS = $(CSRCS) $(HSRCS)
PEXAPIINC = -I../include
PEXINCLUDE = -I$(SERVERSRC)/PEX5/include
INCLUDES = $(PEXAPIINC) $(PEXINCLUDE) -I$(INCLUDESRC)
LINTLIBS = ../error/llib-lerr.ln
SubdirLibraryRule($(OBJS))
NormalLintTarget($(CSRCS))
LintLibraryTarget(css,$(CSRCS))
DependTarget()
|