Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « stdlib « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2df19ede7193d0b0988381e56828f2fae8f5da37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
## Process this file with automake to generate Makefile.in

AUTOMAKE_OPTIONS = cygnus

INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)

GENERAL_SOURCES = \
	fnmatch.c glob.c regcomp.c regerror.c regex2.h \
	regexec.c regfree.c collate.h collate.c collcmp.c \
	reallocf.c

ELIX_3_OBJS = \
	wordexp.$(oext) \
	wordfree.$(oext)

if ELIX_LEVEL_1
LIB_OBJS =
else
if ELIX_LEVEL_2
LIB_OBJS =
else
LIB_OBJS = $(ELIX_3_OBJS)
endif
endif

libstdlib_la_LDFLAGS = -Xcompiler -nostdlib

if USE_LIBTOOL
noinst_LTLIBRARIES = libstdlib.la
libstdlib_la_SOURCES = $(GENERAL_SOURCES)
libstdlib_la_LIBADD = $(LIB_OBJS) 
libstdlib_la_DEPENDENCIES = $(LIB_OBJS) 
noinst_DATA = objectlist.awk.in
else
noinst_LIBRARIES = lib.a
lib_a_SOURCES = $(GENERAL_SOURCES)
lib_a_LIBADD = $(LIB_OBJS) 
lib_a_DEPENDENCIES = $(LIB_OBJS) 
noinst_DATA =
endif # USE_LIBTOOL

AM_CFLAGS = -D_GNU_SOURCE

include $(srcdir)/../../../../Makefile.shared