summaryrefslogtreecommitdiffstats
path: root/newlib/libc/reent/Makefile.in
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-01-29 22:40:50 +0000
committerJeff Johnston <jjohnstn@redhat.com>2001-01-29 22:40:50 +0000
commit3aaa66f813d099dbb04e637459e168800d231aa3 (patch)
treee414ca81677237109cb042c9a3c907496893f59d /newlib/libc/reent/Makefile.in
parent2f3ea37bc8710a775cc1174c496c7fa559f95cdd (diff)
downloadcygnal-3aaa66f813d099dbb04e637459e168800d231aa3.tar.gz
cygnal-3aaa66f813d099dbb04e637459e168800d231aa3.tar.bz2
cygnal-3aaa66f813d099dbb04e637459e168800d231aa3.zip
2001-01-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/math.h (signgam): Change to errno-like solution using a function to return the address of the real signgam. * libc/reent/signgam.c: New file containing __signgam(). * libc/reent/Makefile.am: Added signgam.c to list of files. * libc/reent/Makefile.in: Regenerated.
Diffstat (limited to 'newlib/libc/reent/Makefile.in')
-rw-r--r--newlib/libc/reent/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/newlib/libc/reent/Makefile.in b/newlib/libc/reent/Makefile.in
index 7c1f93134..568d42d73 100644
--- a/newlib/libc/reent/Makefile.in
+++ b/newlib/libc/reent/Makefile.in
@@ -100,6 +100,7 @@ lib_a_SOURCES = \
readr.c \
signalr.c \
sbrkr.c \
+ signgam.c \
statr.c \
timer.c \
unlinkr.c \
@@ -141,7 +142,8 @@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
lib_a_LIBADD =
lib_a_OBJECTS = closer.o reent.o impure.o execr.o fstatr.o linkr.o \
-lseekr.o openr.o readr.o signalr.o sbrkr.o statr.o timer.o unlinkr.o writer.o
+lseekr.o openr.o readr.o signalr.o sbrkr.o signgam.o statr.o timer.o \
+unlinkr.o writer.o
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
@@ -151,7 +153,7 @@ DIST_COMMON = Makefile.am Makefile.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
-TAR = tar
+TAR = gtar
GZIP_ENV = --best
SOURCES = $(lib_a_SOURCES)
OBJECTS = $(lib_a_OBJECTS)
@@ -237,7 +239,7 @@ distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
if test -f $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
- cp -pr $$/$$file $(distdir)/$$file; \
+ cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \