blob: 5523fa2efb2868d9947029b6bfa73dc775234d32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
XCOMM $XConsortium: Imakefile,v 1.2 94/04/08 15:52:10 erik Exp $
SRCS = xkbpath.c xkbtext.c xkbatom.c \
cout.c xkbout.c xkmout.c \
xkmread.c
OBJS = xkbpath.o xkbtext.o xkbatom.o \
cout.o xkbout.o xkmout.o \
xkmread.o
INCLUDES = -I. -I.. -I../utils -I$(EXTINCSRC)
#ifdef UtilsInstrumented
UTIL_DEFINES = UtilsInstrumentation
#endif
DEFINES = $(STD_DEFINES) $(UTIL_DEFINES)
#ifdef UtilsDebugged
CDEBUGFLAGS = -g
#endif
ROOT_DEFINES = -DDFLT_XKB_CONFIG_ROOT=\"$(LIBDIR)/xkb\"
NormalLibraryTarget(xkbfile,$(OBJS))
SpecialCObjectRule(xkbpath,$(ICONFIGFILES),$(ROOT_DEFINES))
DependTarget()
|