source: trunk/libs/newlib/src/newlib/libc/argz/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: 993 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
7## All functions in this directory are EL/IX level 2 and above
8if ELIX_LEVEL_1
9ELIX_SOURCES =
10else
11ELIX_SOURCES =          \
12        argz_add.c      \
13        argz_add_sep.c  \
14        argz_append.c   \
15        argz_count.c    \
16        argz_create.c   \
17        argz_create_sep.c \
18        argz_delete.c   \
19        argz_extract.c  \
20        argz_insert.c   \
21        argz_next.c     \
22        argz_replace.c  \
23        argz_stringify.c \
24        buf_findstr.c   \
25        envz_entry.c    \
26        envz_get.c      \
27        envz_add.c      \
28        envz_remove.c   \
29        envz_merge.c    \
30        envz_strip.c
31endif
32
33libargz_la_LDFLAGS = -Xcompiler -nostdlib
34
35if USE_LIBTOOL
36noinst_LTLIBRARIES = libargz.la
37libargz_la_SOURCES = dummy.c $(ELIX_SOURCES)
38noinst_DATA = objectlist.awk.in
39else
40noinst_LIBRARIES = lib.a
41lib_a_SOURCES = dummy.c $(ELIX_SOURCES)
42lib_a_CFLAGS = $(AM_CFLAGS)
43noinst_DATA =
44endif # USE_LIBTOOL
45
46CHEWOUT_FILES =
47CHAPTERS =
48# No doc for argz.
49
50include $(srcdir)/../../Makefile.shared
Note: See TracBrowser for help on using the repository browser.