source: trunk/libs/newlib/src/newlib/libc/locale/Makefile.am @ 620

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

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

File size: 946 bytes
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 = setlocale.h locale.c localeconv.c
8
9## The following interfaces are EL/IX level 2
10if ELIX_LEVEL_1
11ELIX_SOURCES =
12else
13ELIX_SOURCES = \
14        duplocale.c \
15        freelocale.c \
16        lctype.c \
17        lmessages.c \
18        lnumeric.c \
19        lmonetary.c \
20        newlocale.c \
21        nl_langinfo.c \
22        timelocal.c \
23        uselocale.c
24endif
25
26liblocale_la_LDFLAGS = -Xcompiler -nostdlib
27
28if USE_LIBTOOL
29noinst_LTLIBRARIES = liblocale.la
30liblocale_la_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
31noinst_DATA = objectlist.awk.in
32else
33noinst_LIBRARIES = lib.a
34lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
35lib_a_CFLAGS = $(AM_CFLAGS)
36noinst_DATA =
37endif # USE_LIBTOOL
38
39include $(srcdir)/../../Makefile.shared
40
41CHEWOUT_FILES = \
42        duplocale.def \
43        freelocale.def \
44        locale.def \
45        newlocale.def \
46        uselocale.def
47
48CHAPTERS = locale.tex
Note: See TracBrowser for help on using the repository browser.