source: trunk/libs/newlib/src/newlib/libc/ctype/Makefile.am @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.2 KB
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7GENERAL_SOURCES =       \
8        ctype_.c        \
9        isalnum.c       \
10        isalpha.c       \
11        iscntrl.c       \
12        isdigit.c       \
13        islower.c       \
14        isupper.c       \
15        isprint.c       \
16        ispunct.c       \
17        isspace.c       \
18        isxdigit.c      \
19        tolower.c       \
20        toupper.c
21
22## The following handles EL/IX level 2 functions
23if ELIX_LEVEL_1
24ELIX_SOURCES =
25else
26ELIX_SOURCES = \
27        isalnum_l.c     \
28        isalpha_l.c     \
29        isascii.c       \
30        isascii_l.c     \
31        isblank.c       \
32        isblank_l.c     \
33        iscntrl_l.c     \
34        isdigit_l.c     \
35        islower_l.c     \
36        isupper_l.c     \
37        isprint_l.c     \
38        ispunct_l.c     \
39        isspace_l.c     \
40        iswalnum.c      \
41        iswalnum_l.c    \
42        iswalpha.c      \
43        iswalpha_l.c    \
44        iswblank.c      \
45        iswblank_l.c    \
46        iswcntrl.c      \
47        iswcntrl_l.c    \
48        iswctype.c      \
49        iswctype_l.c    \
50        iswdigit.c      \
51        iswdigit_l.c    \
52        iswgraph.c      \
53        iswgraph_l.c    \
54        iswlower.c      \
55        iswlower_l.c    \
56        iswprint.c      \
57        iswprint_l.c    \
58        iswpunct.c      \
59        iswpunct_l.c    \
60        iswspace.c      \
61        iswspace_l.c    \
62        iswupper.c      \
63        iswupper_l.c    \
64        iswxdigit.c     \
65        iswxdigit_l.c   \
66        isxdigit_l.c    \
67        jp2uc.c         \
68        toascii.c       \
69        toascii_l.c     \
70        tolower_l.c     \
71        toupper_l.c     \
72        towctrans.c     \
73        towctrans_l.c   \
74        towlower.c      \
75        towlower_l.c    \
76        towupper.c      \
77        towupper_l.c    \
78        wctrans.c       \
79        wctrans_l.c     \
80        wctype.c        \
81        wctype_l.c
82endif
83
84libctype_la_LDFLAGS = -Xcompiler -nostdlib
85
86if USE_LIBTOOL
87noinst_LTLIBRARIES = libctype.la
88libctype_la_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
89noinst_DATA = objectlist.awk.in
90else
91noinst_LIBRARIES = lib.a
92lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
93lib_a_CFLAGS = $(AM_CFLAGS)
94noinst_DATA =
95endif # USE_LIBTOOL
96
97include $(srcdir)/../../Makefile.shared
98
99CHEWOUT_FILES= \
100        isalnum.def     \
101        isalpha.def     \
102        isascii.def     \
103        isblank.def     \
104        iscntrl.def     \
105        isdigit.def     \
106        islower.def     \
107        isprint.def     \
108        ispunct.def     \
109        isspace.def     \
110        isupper.def     \
111        iswalnum.def    \
112        iswalpha.def    \
113        iswblank.def    \
114        iswcntrl.def    \
115        iswctype.def    \
116        iswdigit.def    \
117        iswgraph.def    \
118        iswlower.def    \
119        iswprint.def    \
120        iswpunct.def    \
121        iswspace.def    \
122        iswupper.def    \
123        iswxdigit.def   \
124        isxdigit.def    \
125        toascii.def     \
126        tolower.def     \
127        toupper.def     \
128        towctrans.def   \
129        towlower.def    \
130        towupper.def    \
131        wctrans.def     \
132        wctype.def
133
134CHAPTERS = ctype.tex
135
136$(lpfx)ctype_.$(oext): ctype_.c ctype_iso.h ctype_cp.h
Note: See TracBrowser for help on using the repository browser.