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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/ctype/Makefile.am')
-rw-r--r--newlib/libc/ctype/Makefile.am118
1 files changed, 0 insertions, 118 deletions
diff --git a/newlib/libc/ctype/Makefile.am b/newlib/libc/ctype/Makefile.am
deleted file mode 100644
index 4a85b7210..000000000
--- a/newlib/libc/ctype/Makefile.am
+++ /dev/null
@@ -1,118 +0,0 @@
-## Process this file with automake to generate Makefile.in
-
-AUTOMAKE_OPTIONS = cygnus
-
-INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
-
-GENERAL_SOURCES = \
- ctype_.c \
- isalnum.c \
- isalpha.c \
- iscntrl.c \
- isdigit.c \
- islower.c \
- isupper.c \
- isprint.c \
- ispunct.c \
- isspace.c \
- isxdigit.c \
- tolower.c \
- toupper.c
-
-## The following handles EL/IX level 2 functions
-if ELIX_LEVEL_1
-LIB_OBJS =
-else
-LIB_OBJS = \
- isascii.$(oext) \
- isblank.$(oext) \
- iswalnum.$(oext) \
- iswalpha.$(oext) \
- iswblank.$(oext) \
- iswcntrl.$(oext) \
- iswctype.$(oext) \
- iswdigit.$(oext) \
- iswgraph.$(oext) \
- iswlower.$(oext) \
- iswprint.$(oext) \
- iswpunct.$(oext) \
- iswspace.$(oext) \
- iswupper.$(oext) \
- iswxdigit.$(oext) \
- jp2uc.$(oext) \
- toascii.$(oext) \
- _tolower.$(oext) \
- _toupper.$(oext) \
- towctrans.$(oext) \
- towlower.$(oext) \
- towupper.$(oext) \
- wctrans.$(oext) \
- wctype.$(oext)
-endif
-
-libctype_la_LDFLAGS = -Xcompiler -nostdlib
-
-if USE_LIBTOOL
-noinst_LTLIBRARIES = libctype.la
-libctype_la_SOURCES = $(GENERAL_SOURCES)
-libctype_la_LIBADD = $(LIB_OBJS)
-libctype_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
-
-include $(srcdir)/../../Makefile.shared
-
-CHEWOUT_FILES= \
- isalnum.def \
- isalpha.def \
- isascii.def \
- iscntrl.def \
- isdigit.def \
- islower.def \
- isprint.def \
- ispunct.def \
- isspace.def \
- isupper.def \
- iswalnum.def \
- iswalpha.def \
- iswblank.def \
- iswcntrl.def \
- iswctype.def \
- iswdigit.def \
- iswgraph.def \
- iswlower.def \
- iswprint.def \
- iswpunct.def \
- iswspace.def \
- iswupper.def \
- iswxdigit.def \
- isxdigit.def \
- toascii.def \
- tolower.def \
- toupper.def \
- towctrans.def \
- towlower.def \
- towupper.def \
- wctrans.def \
- wctype.def
-
-SUFFIXES = .def
-
-CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
-
-.c.def:
- $(CHEW) < $< > $*.def 2> $*.ref
- touch stmp-def
-
-TARGETDOC = ../tmp.texi
-
-doc: $(CHEWOUT_FILES)
- cat $(srcdir)/ctype.tex >> $(TARGETDOC)
-
-CLEANFILES = $(CHEWOUT_FILES) *.ref