blob: c23c9809eb9dac0b984b745d01e963677afe81ef (
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
|
XCOMM $XConsortium: Imakefile,v 1.5 95/01/16 15:53:55 kaleb Exp $
#include <Server.tmpl>
SRCS = Args.c \
Color.c \
Cursor.c \
Display.c \
Events.c \
Font.c \
GC.c \
GCOps.c \
GetTime.c \
Handlers.c \
Init.c \
Keyboard.c \
Pixmap.c \
Pointer.c \
Screen.c \
TestExt.c \
Visual.c \
Window.c \
stubs.c
OBJS = Args.o \
Color.o \
Cursor.o \
Display.o \
Events.o \
Font.o \
GC.o \
GCOps.o \
GetTime.o \
Handlers.o \
Init.o \
Keyboard.o \
Pixmap.o \
Pointer.o \
Screen.o \
TestExt.o \
Visual.o \
Window.o \
stubs.o
INCLUDES = -I. -I$(BUILDINCDIR) -I$(FONTINCSRC) \
-I../../mi -I../../include -I../../os \
-I$(EXTINCSRC) -I$(INCLUDESRC)
all:: $(OBJS)
LinkSourceFile(stubs.c,../../Xi)
NormalLibraryObjectRule()
NormalLibraryTarget(xnest,$(OBJS))
InstallManPage(Xnest,$(MANDIR))
InstallLinkKitLibrary(xnest,$(LINKKITDIR)/lib)
DependTarget()
|