blob: b6ad97b9aaab9b8452e093dfa349510a7ddee146 (
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
|
XCOMM $XConsortium: Imakefile /main/2 1996/09/28 17:13:18 rws $
#include <Server.tmpl>
SRCS1 = sunAmInit.c \
sunCfb.c \
sunCursor.c \
sunFbs.c \
sunAmIo.c \
sunAmKbd.c \
sunMfb.c \
sunAmMouse.c\
sunGX.c \
sunKeyMap.c \
sunAmScreen.c \
sunAmProbe.c
SRCS = $(SRCS1)
OFILES = sunInitColor.o sunInitMono.o sunInExMono.o
OBJS = sunCfb.o \
sunCursor.o \
sunFbs.o \
sunAmIo.o \
sunAmKbd.o \
sunMfb.o \
sunAmMouse.o \
sunGX.o \
sunKeyMap.o \
sunAmScreen.o \
sunAmProbe.o
INCLUDES = -I. -I../sun -I../.. -I../../mi -I../../mfb -I../../cfb \
-I../../include -I$(XINCLUDESRC) -I$(FONTINCSRC)
LINTLIBS = ../../dix/llib-ldix.ln ../../os/llib-los.ln \
../mfb/llib-lmfb.ln ../mi/llib-lmi.ln ../cfb/llib-lcfb.ln
NormalLibraryObjectRule()
all:: $(OFILES)
lintlib:
NormalLibraryTarget(sun,$(OBJS))
NormalLintTarget($(SRCS1))
sunInExMono.o: $(ICONFIGFILES)
ObjectFromSpecialSource(sunInExMono,../../mi/miinitext,-UPEXEXT)
ObjectFromSpecialSource(sunInitMono,sunAmInit,-DSUNMAXDEPTH=1)
ObjectFromSpecialSource(sunInitColor,sunAmInit,-DSUNMAXDEPTH=8)
ObjectFromSpecialSource(sunGX,../sun/sunGX,/**/)
ObjectFromSpecialSource(sunKeyMap,../sun/sunKeyMap,/**/)
ObjectFromSpecialSource(sunMfb,../sun/sunMfb,/**/)
DependTarget()
|