File: Makefile

package info (click to toggle)
libc-sparc 5.3.12-3
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 17,608 kB
  • ctags: 44,718
  • sloc: ansic: 163,548; asm: 5,080; makefile: 3,340; lex: 521; sh: 439; yacc: 401; awk: 28
file content (42 lines) | stat: -rw-r--r-- 1,085 bytes parent folder | download | duplicates (7)
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