blob: 194613116620326f396c265320b3260657f8de06 (
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
|
XCOMM $XConsortium: Imakefile,v 1.7 94/12/01 20:42:00 mor Exp $
#include <Server.tmpl>
INCLUDES = -I../include -I$(TOP)/include -I$(EXTINCSRC) \
-I../../../include/extensions
SRCS = main.c dispatch.c wire.c globals.c \
utils.c tables.c init.c \
cache.c colormap.c lbxfuncs.c reqtype.c \
resource.c tags.c atomcache.c gfx.c lbxutil.c \
props.c swapreq.c swaprep.c unsquish.c extensions.c \
options.c
OBJS = main.o dispatch.o wire.o globals.o \
utils.o tables.o init.o \
cache.o colormap.o lbxfuncs.o reqtype.o \
resource.o tags.o atomcache.o gfx.o lbxutil.o \
props.o swapreq.o swaprep.o unsquish.o extensions.o \
options.o
EXTRA_DEFINES = AllocateLocalDefines
NormalLibraryObjectRule()
NormalLibraryTarget(dilbx,$(OBJS))
LintLibraryTarget(dilbx,$(SRCS))
NormalLintTarget($(SRCS))
DependTarget()
|