source: trunk/libs/newlib/src/newlib/libc/xdr/Makefile.am @ 567

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

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

File size: 1.1 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  xdr_private.c \
9  xdr.c \
10  xdr_float.c \
11  xdr_array.c \
12  xdr_mem.c \
13  xdr_rec.c \
14  xdr_reference.c \
15  xdr_sizeof.c
16
17STDIO_SOURCES = \
18  xdr_stdio.c
19
20EXTRA_SRC = \
21  xdr_float_vax.c
22
23## None of these functions are specified by EL/IX
24if ELIX_LEVEL_1
25ELIX_SOURCES =
26else
27if ELIX_LEVEL_2
28ELIX_SOURCES =
29else
30if ELIX_LEVEL_3
31ELIX_SOURCES =
32else
33if ELIX_LEVEL_4
34ELIX_SOURCES =
35else
36if HAVE_STDIO_DIR
37ELIX_SOURCES = $(GENERAL_SOURCES) $(STDIO_SOURCES)
38else
39ELIX_SOURCES = $(GENERAL_SOURCES)
40endif
41endif
42endif
43endif
44endif
45
46EXTRA_DIST = README $(EXTRA_SRC)
47
48libxdr_la_LDFLAGS = -Xcompiler -nostdlib
49
50if USE_LIBTOOL
51noinst_LTLIBRARIES = libxdr.la
52libxdr_la_SOURCES = dummy.c $(ELIX_SOURCES)
53noinst_DATA = objectlist.awk.in
54else
55noinst_LIBRARIES = lib.a
56lib_a_SOURCES = dummy.c $(ELIX_SOURCES)
57lib_a_CFLAGS = $(AM_CFLAGS)
58noinst_DATA =
59endif # USE_LIBTOOL
60
61CHEWOUT_FILES =
62CHAPTERS =
63# No doc for xdr.
64
65include $(srcdir)/../../Makefile.shared
Note: See TracBrowser for help on using the repository browser.