blob: 1fc166f153b823e65847ce475ad21416f3131216 (
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
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
64
65
66
67
68
69
|
XCOMM $Xorg: Imakefile,v 1.3 2000/08/17 19:48:22 cpqbld Exp $
#include <Server.tmpl>
#define IHaveSubdirs
SUBDIRS=drivers
SRCS1 = \
hpKeyMap.c \
x_hil.c \
x_hilinit.c \
xtest1imp.c \
getkeysym.c
SRCS2 = \
cr16.s \
get_tv.c
NONHILOBJS = \
hpKeyMap.o \
xtest1imp.o \
getkeysym.o
NONHILOBJS2 = \
cr16.o \
get_tv.o
SRCS = $(SRCS1) $(SRCS2)
HILOBJS = \
x_hil.o \
x_hilinit.o
OBJS = $(NONHILOBJS) $(NONHILOBJS2) $(HILOBJS)
LOBJS = \
hpKeyMap.ln \
x_hil.ln \
x_hilinit.ln \
xtest1imp.ln \
getkeysym.ln
DEFINES = ExtensionOSDefines -DOSMAJORVERSION=OSMajorVersion
LIB_DEFINES = -DLIBDIR=\"$(LIBDIR)\"
INCLUDES = -I. -I.. -I../include -I../../../include -I./X11 \
-I../../../cfb -I../../../mfb -I../../../mi \
-I$(XINCLUDESRC) -I$(EXTINCSRC) -I./drivers
LINTLIBS = ../../../dix/llib-ldix.ln ../../../os/hpux/llib-los.ln
all::
MakeSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
NormalLibraryObjectRule()
NormalLibraryTarget(hp,$(OBJS))
SpecialCObjectRule(x_hilinit,$(ICONFIGFILES),$(LIB_DEFINES))
SpecialCObjectRule(x_hil,$(ICONFIGFILES),$(LIB_DEFINES))
SpecialCObjectRule(getkeysym,$(ICONFIGFILES),$(LIB_DEFINES))
DependTarget()
LintLibraryTarget(hp,$(SRCS1))
NormalLintTarget($(SRCS1))
|