OSDN Git Service

2004-06-25 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
[pf3gnuchains/pf3gnuchains3x.git] / newlib / libc / iconv / ccs / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = cygnus
4
5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7 GENERAL_SOURCES = ccsbi.c \
8 iso_8859_10.c iso_8859_13.c iso_8859_14.c iso_8859_15.c \
9 iso_8859_1.c iso_8859_2.c iso_8859_3.c iso_8859_4.c \
10 iso_8859_5.c iso_8859_6.c iso_8859_7.c iso_8859_8.c \
11 iso_8859_9.c iso_8859_11.c \
12 win_1250.c win_1252.c win_1254.c \
13 win_1256.c win_1258.c win_1251.c \
14 win_1253.c win_1255.c win_1257.c \
15 koi8_r.c koi8_u.c koi8_ru.c koi8_uni.c \
16 iso_ir_111.c \
17 big5.c \
18 cp775.c cp850.c cp852.c cp855.c cp866.c \
19 jis_x0212_1990.c jis_x0201_1976.c jis_x0208_1990.c ksx1001.c \
20 cns11643_plane1.c cns11643_plane2.c cns11643_plane14.c
21
22 ## The following interfaces are EL/IX level 2
23 if ELIX_LEVEL_1
24 LIB_OBJS = ccsbi.$(oext) \
25 iso_8859_10.$(oext) iso_8859_13.$(oext) iso_8859_14.$(oext) iso_8859_15.$(oext) \
26 iso_8859_1.$(oext) iso_8859_2.$(oext) iso_8859_3.$(oext) iso_8859_4.$(oext) \
27 iso_8859_5.$(oext) iso_8859_6.$(oext) iso_8859_7.$(oext) iso_8859_8.$(oext) \
28 iso_8859_9.$(oext) iso_8859_11.$(oext) \
29 win_1250.$(oext) win_1252.$(oext) win_1254.$(oext) \
30 win_1256.$(oext) win_1258.$(oext) win_1251.$(oext) \
31 win_1253.$(oext) win_1255.$(oext) win_1257.$(oext) \
32 koi8_r.$(oext) koi8_u.$(oext) koi8_ru.$(oext) koi8_uni.$(oext)
33 iso_ir_111.$(oext) \
34 big5.$(oext) \
35 cp775.$(oext) cp850.$(oext) cp852.$(oext) cp855.$(oext) cp866.$(oext) \
36 jis_x0212_1990.$(oext) jis_x0201_1976.$(oext) jis_x0208_1990.$(oext) ksx1001.$(oext) \
37 cns11643_plane1.$(oext) cns11643_plane2.$(oext) cns11643_plane14.$(oext)
38
39 else
40 LIB_OBJS =
41 endif
42
43 noinst_LIBRARIES = lib.a
44 lib_a_SOURCES = $(GENERAL_SOURCES)
45 lib_a_LIBADD = $(LIB_OBJS)
46 lib_a_DEPENDENCIES = $(LIB_OBJS)
47 noinst_DATA =
48
49 SUBDIRS=binary
50
51 CHEWOUT_FILES = ccs.def
52
53 SUFFIXES = .def
54
55 CHEW = ../../../doc/makedoc -f $(srcdir)/../../../doc/doc.str
56
57 .c.def:
58         $(CHEW) < $< > $*.def 2> $*.ref
59         touch stmp-def
60
61 TARGETDOC = ../tmp.texi
62
63 doc: $(CHEWOUT_FILES)
64         cat $(srcdir)/ccs.tex >> $(TARGETDOC)
65
66 CLEANFILES = $(CHEWOUT_FILES) *.ref
67
68 include $(srcdir)/../../../Makefile.shared