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
|
#
# This is Makefile of the math lib for Linux for the m68k
#
MATH=true
override DEBUG=false
override PROFILE=false
TOPDIR=../../../..
include $(TOPDIR)/Makeconfig
include $(TOPDIR)/Makerules
INC_CFLAGS = -I.
MATHFLAGS=-mieee-fp
BASE_CFLAGS := $(BASE_CFLAGS) $(MATHFLAGS)
SRC1S= __copysign.c __infnan.c __rint.c \
acos.c acosh.c asin.c atanh.c ceil.c erf.c floor.c \
j0.c j1.c jn.c lgamma.c log.c log10.c log1p.c pow.c sqrt.c \
__drem.c asinh.c atan.c atan2.c cos.c cosh.c exp.c \
expm1.c fabs.c fmod.c hypot.c sin.c sinh.c tan.c tanh.c \
cbrt.c __polevll.c __infnanl.c __copysignl.c \
acosl.c acoshl.c asinl.c atanhl.c ceill.c erfl.c floorl.c frexpl.c \
j0l.c j1l.c jnl.c lgammal.c logl.c log10l.c log1pl.c powl.c sqrtl.c \
asinhl.c atanl.c atan2l.c cosl.c coshl.c expl.c \
expm1l.c fabsl.c fmodl.c hypotl.c sinl.c sinhl.c tanl.c tanhl.c \
cbrtl.c modfl.c log2l.c fpclassifyf.c
ifeq ($(ELF),)
SRC1S += frexp.c
endif
SRC2S=
DIRS:=
SRCS=$(SRC1S) $(SRC2S)
ASMS= $(SRC1S:.c=.s) $(SRC2S:.S=.s)
OBJS= $(SRC1S:.c=.o) $(SRC2S:.S=.o)
ALIASES:=
include $(TOPDIR)/Maketargets
|