blob: 2bdb0564aa5cee117741db726d718b520277ddc9 (
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
|
XCOMM $XFree86: xc/lib/fontenc/Imakefile,v 1.8 2003/11/17 15:30:11 tsi Exp $
INCLUDES = -I$(FONTINCSRC) -I$(FONTLIBSRC)/include -I$(FONTLIBSRC)/fontfile \
-I$(INCLUDESRC)
FONTENCDEFS = -DFONTENC_NO_LIBFONT \
-DFONT_ENCODINGS_DIRECTORY=\"$(FONTDIR)/encodings/encodings.dir\"
DEFINES = StrcasecmpDefines $(FONTENCDEFS)
SRCS = fontenc.c encparse.c
OBJS = fontenc.o encparse.o
HEADERS = fontenc.h
#define DoNormalLib NormalLibFontEnc
#define DoSharedLib SharedLibFontEnc
#define DoDebugLib DebugLibFontEnc
#define DoProfileLib ProfileLibFontEnc
#define LibName fontenc
#define SoRev SOFONTENCREV
#define IncSubdir X11
#define IncSubSubdir fonts
#ifdef SharedFontencReqs
REQUIREDLIBS = SharedFontencReqs
#endif
#include <Library.tmpl>
LinkSourceFile(fontenc.c,$(FONTLIBSRC)/fontfile)
LinkSourceFile(encparse.c,$(FONTLIBSRC)/fontfile)
LinkSourceFile(fontenc.h,$(FONTLIBSRC)/include)
DependTarget()
|