aboutsummaryrefslogtreecommitdiff
path: root/ic-reals-6.3/math-lib/Makefile
blob: b370191fd81264c92c407251b398094c6f9dda29 (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
OBJS = init.o \
	tan_R.o \
	tan_Q.o \
	atan_R.o \
	atan_Q.o \
	tanh_R.o \
	tanh_Q.o \
	atanh_R.o \
	atanh_Q.o \
	sin_R.o \
	sin_Q.o \
	asin_R.o \
	asin_Q.o \
	sinh_R.o \
	sinh_Q.o \
	asinh_R.o \
	asinh_Q.o \
	cos_R.o \
	cos_Q.o \
	acos_R.o \
	acos_Q.o \
	cosh_R.o \
	cosh_Q.o \
	acosh_R.o \
	acosh_Q.o \
	secant.o \
	cosecant.o \
	cotangent.o \
	log_R.o \
	log_Q.o \
	exp_R.o \
	exp_Q.o \
	sqrt_R.o \
	sqrt_Q.o \
	pow_R_R.o \
	pi.o \
	abs_R.o \
	neg_R.o \
	stdTensorCont.o

force: $(OBJS)
$(OBJS): ../real.h ../real-impl.h

stdTensor.o : math-lib.h
tan_R.o : math-lib.h
atan_R.o : math-lib.h
exp_R.o : math-lib.h
log_R.o : math-lib.h

clean:
	rm -f $(OBJS)