1#####################################################
2# Makefile for Cephes math library                  #
3#####################################################
4# You should not change anything here.              #
5#####################################################
6
7TOP=..
8
9include $(TOP)/Make.conf
10
11.SUFFIXES : .c $(O)
12
13CFLAGS=$(CFLAGS0) -I$(TOP) -I. $(CPPFLAGS)
14
15LIB=libcephes.a
16
17all : $(LIB)
18
19include Make.common
20
21include Make.dep
22
23
24$(LIB) : $(OBJS)
25	$(AR) cr $(LIB) $(OBJS)
26	$(RANLIB) $(LIB)
27
28install : $(LIB)
29
30tests : dummy
31
32links : dummy
33
34clean :
35	$(RM) $(LIB) $(OBJS)
36
37distclean :
38	$(RM) $(LIB) $(OBJS) *.orig
39
40devclean :
41	$(RM) $(LIB) $(OBJS) *.orig
42
43dummy :
44