summaryrefslogtreecommitdiff
path: root/libm/float/Makefile
blob: 389ac1a5d9992bfae6febc38e883084b67c7c28c (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Makefile for uClibc's math library
#
# Copyright (C) 2001 by Lineo, inc.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option) any
# later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
# details.
#
# You should have received a copy of the GNU Library General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Derived in part from the Linux-8086 C library, the GNU C Library, and several
# other sundry sources.  Files within this library are copyright by their
# respective copyright holders.

TOPDIR=../../
include $(TOPDIR)Rules.mak

LIBM=../libm.a
TARGET_CC= $(TOPDIR)/extra/gcc-uClibc/$(TARGET_ARCH)-uclibc-gcc

CSRC= acoshf.c airyf.c asinf.c asinhf.c atanf.c \
	atanhf.c bdtrf.c betaf.c cbrtf.c chbevlf.c chdtrf.c \
	clogf.c cmplxf.c constf.c coshf.c dawsnf.c ellief.c \
	ellikf.c ellpef.c ellpkf.c ellpjf.c expf.c exp2f.c \
	exp10f.c expnf.c facf.c fdtrf.c floorf.c fresnlf.c \
	gammaf.c gdtrf.c hypergf.c hyp2f1f.c igamf.c igamif.c \
	incbetf.c incbif.c i0f.c i1f.c ivf.c j0f.c j1f.c \
	jnf.c jvf.c k0f.c k1f.c knf.c logf.c log2f.c \
	log10f.c nbdtrf.c ndtrf.c ndtrif.c pdtrf.c polynf.c \
	powif.c powf.c psif.c rgammaf.c shichif.c sicif.c \
	sindgf.c sinf.c sinhf.c spencef.c sqrtf.c stdtrf.c \
	struvef.c tandgf.c tanf.c tanhf.c ynf.c zetaf.c \
	zetacf.c polevlf.c setprec.c mtherr.c
COBJS=$(patsubst %.c,%.o, $(CSRC))


OBJS=$(COBJS)

all: $(OBJS) $(LIBM)

$(LIBM): ar-target

ar-target: $(OBJS)
	$(AR) $(ARFLAGS) $(LIBM) $(OBJS)

$(COBJS): %.o : %.c
	$(TARGET_CC) $(CFLAGS) -c $< -o $@
	$(STRIPTOOL) -x -R .note -R .comment $*.o

$(OBJ): Makefile

clean:
	rm -f *.[oa] *~ core