mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-15 11:00:04 +08:00
a639937a9a
Make isatty syscall handling consistent with other newlib syscalls. * libc/include/_syslist.h: Add _isatty. * libc/include/reent.h: Add _isatty_r. * libc/include/sys/unistd.h: Add _isatty. * libc/posix/Makefile.am: Add new _isatty.c file. * libc/posix/Makefile.in: Regenerated. * libc/posix/_isatty.c: New file. * libc/posix/isatty.c: Changed to call _isatty(). * libc/reent/Makefile.am: Add new isattyr.c file. * libc/reent/Makefile.in: Regenerated. * libc/reent/isattyr.c: New file. * libc/stdio/freopen.c: Changed to call _isatty_r(). * libc/stdio/makebuf.c: Ditto. * libc/sys/a29khif/_isatty.S: Change isatty to _isatty. * libc/sys/arc/isatty.c: Ditto. * libc/sys/arm/syscalls.c: Ditto. * libc/sys/d10v/syscalls.c: Ditto. * libc/sys/h8300hms/syscalls.c: Ditto. * libc/sys/h8500hms/syscalls.c: Ditto. * libc/sys/linux/Makefile.am: Add new isatty.c file. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/isatty.c: New file. * libc/syscalls/Makefile.am: Add new sysisatty.c file. * libc/syscalls/Makefile.in: Regenerated. * libc/syscalls/sysisatty.c: New file.
105 lines
1.7 KiB
Makefile
105 lines
1.7 KiB
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = cygnus
|
|
|
|
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
if HAVE_STDIO64_DIR
|
|
STDIO64_SOURCES = \
|
|
fstat64r.c \
|
|
lseek64r.c \
|
|
open64r.c
|
|
|
|
STDIO64_DEFS = \
|
|
fstat64r.def \
|
|
lseek64r.def \
|
|
open64r.def
|
|
endif
|
|
|
|
ELIX_2_SOURCES = $(STDIO64_SOURCES)
|
|
ELIX_3_SOURCES = execr.c
|
|
|
|
if ELIX_LEVEL_1
|
|
ELIX_SOURCES =
|
|
else
|
|
if ELIX_LEVEL_2
|
|
ELIX_SOURCES = $(ELIX_2_SOURCES)
|
|
else
|
|
ELIX_SOURCES = $(ELIX_2_SOURCES) $(ELIX_3_SOURCES)
|
|
endif
|
|
endif
|
|
|
|
GENERAL_SOURCES = \
|
|
closer.c \
|
|
reent.c \
|
|
impure.c \
|
|
fcntlr.c \
|
|
fstatr.c \
|
|
getreent.c \
|
|
gettimeofdayr.c \
|
|
isattyr.c \
|
|
linkr.c \
|
|
lseekr.c \
|
|
openr.c \
|
|
readr.c \
|
|
renamer.c \
|
|
signalr.c \
|
|
signgam.c \
|
|
sbrkr.c \
|
|
statr.c \
|
|
timesr.c \
|
|
unlinkr.c \
|
|
writer.c
|
|
|
|
libreent_la_LDFLAGS = -Xcompiler -nostdlib
|
|
|
|
if USE_LIBTOOL
|
|
noinst_LTLIBRARIES = libreent.la
|
|
libreent_la_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
|
|
noinst_DATA = objectlist.awk.in
|
|
else
|
|
noinst_LIBRARIES = lib.a
|
|
lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
noinst_DATA =
|
|
endif # USE_LIBTOOL
|
|
|
|
include $(srcdir)/../../Makefile.shared
|
|
|
|
CHEWOUT_FILES = \
|
|
closer.def \
|
|
reent.def \
|
|
execr.def \
|
|
fcntlr.def \
|
|
fstatr.def \
|
|
gettimeofdayr.def \
|
|
linkr.def \
|
|
lseekr.def \
|
|
openr.def \
|
|
readr.def \
|
|
renamer.def \
|
|
signalr.def \
|
|
sbrkr.def \
|
|
statr.def \
|
|
timesr.def \
|
|
unlinkr.def \
|
|
$(STDIO64_DEFS) \
|
|
writer.def
|
|
|
|
SUFFIXES = .def .h
|
|
|
|
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)/reent.tex >> $(TARGETDOC)
|
|
|
|
$(lpfx)impure.$(oext): $(srcdir)/impure.c $(srcdir)/../include/sys/reent.h
|
|
|
|
CLEANFILES = $(CHEWOUT_FILES) *.ref
|