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:
authorDanny Smith <dannysmith@users.sourceforge.net>2003-10-21 13:43:22 +0400
committerDanny Smith <dannysmith@users.sourceforge.net>2003-10-21 13:43:22 +0400
commit3c7a7a5fcaaf92fc6762a23089738853973044d9 (patch)
tree4451bd7cfebc3022b0f780a5f0c40bd60db140c4 /winsup/mingw/mingwex/Makefile.in
parent6de52354ebdfb6badf96e7825a09d832512e839d (diff)
Add ISO C99 complex support for doubles.
* include/complex.h: New file. * mingwex/complex: New directory. * mingwex/complex/cabs.c: New file. * mingwex/complex/cacos.c: New file. * mingwex/complex/cacosh.c: New file. * mingwex/complex/casin.c: New file. * mingwex/complex/casinh.c: New file. * mingwex/complex/catan.c: New file. * mingwex/complex/catanh.c: New file. * mingwex/complex/ccos.c: New file. * mingwex/complex/ccosh.c: New file. * mingwex/complex/cexp.c: New file. * mingwex/complex/cimag.c: New file. * mingwex/complex/clog.c: New file. * mingwex/complex/cpow.c: New file. * mingwex/complex/cproj.c: New file. * mingwex/complex/creal.c: New file. * mingwex/complex/csin.c: New file. * mingwex/complex/csinh.c: New file. * mingwex/complex/csqrt.c: New file. * mingwex/complex/ctan.c: New file. * mingwex/complex/ctanh.c: New file. * mingwex/Makefile.in (COMPLEX_DISTFILES): New list of files. (dist): Use it. (COMPLEX_OBJS): New list of objects. (LIB_OBJS): Include it in the library.
Diffstat (limited to 'winsup/mingw/mingwex/Makefile.in')
-rw-r--r--winsup/mingw/mingwex/Makefile.in19
1 files changed, 17 insertions, 2 deletions
diff --git a/winsup/mingw/mingwex/Makefile.in b/winsup/mingw/mingwex/Makefile.in
index dcd46c70f..cc9e44040 100644
--- a/winsup/mingw/mingwex/Makefile.in
+++ b/winsup/mingw/mingwex/Makefile.in
@@ -4,7 +4,7 @@
# This makefile requires GNU make.
srcdir = @srcdir@
-VPATH = $(srcdir):$(srcdir)/math:$(srcdir)/stdio
+VPATH = $(srcdir):$(srcdir)/math:$(srcdir)/stdio:$(srcdir)/complex
objdir = .
target_alias = @target_alias@
@@ -65,6 +65,11 @@ STDIO_DISTFILES = \
snprintf.c snwprintf.c vsnprintf.c vsnwprintf.c \
vfscanf.c vfwscanf.c vscanf.c vsscanf.c vswscanf.c vwscanf.c
+COMPLEX_DISTFILES = \
+ cabs.c cacos.c cacosh.c casin.c casinh.c catan.c catanh.c \
+ ccos.c ccosh.c cexp.c cimag.c clog.c cpow.c cproj.c creal.c \
+ csin.c csinh.c csqrt.c ctan.c ctanh.c
+
CC = @CC@
# FIXME: Which is it, CC or CC_FOR_TARGET?
CC_FOR_TARGET = $(CC)
@@ -143,10 +148,14 @@ POSIX_OBJS = \
dirent.o wdirent.o getopt.o
REPLACE_OBJS = \
mingw-fseek.o
+COMPLEX_OBJS = \
+ cabs.o cacos.o cacosh.o casin.o casinh.o catan.o catanh.o \
+ ccos.o ccosh.o cexp.o cimag.o clog.o cpow.o cproj.o creal.o \
+ csin.o csinh.o csqrt.o ctan.o ctanh.o
LIB_OBJS = $(Q8_OBJS) $(STDLIB_OBJS) $(STDLIB_STUB_OBJS) \
$(STDIO_OBJS) $(MATH_OBJS) $(FENV_OBJS) \
- $(POSIX_OBJS) $(REPLACE_OBJS)
+ $(POSIX_OBJS) $(REPLACE_OBJS) $(COMPLEX_OBJS)
LIBS = $(LIBMINGWEX_A)
DLLS =
@@ -216,3 +225,9 @@ dist:
@for i in $(STDIO_DISTFILES); do\
cp -p $(srcdir)/stdio/$$i $(distdir)/mingwex/stdio/$$i ; \
done
+ mkdir $(distdir)/mingwex/complex
+ chmod 755 $(distdir)/mingwex/complex
+ @for i in $(COMPLEX_DISTFILES); do\
+ cp -p $(srcdir)/complex/$$i $(distdir)/mingwex/complex/$$i ; \
+ done
+