#####################################################
# Makefile for Cephes math library                  #
#####################################################
# You should not change anything here.              #
# Please read INSTALL file in the upper directory   #
#####################################################

TOP=..

include $(TOP)/Make.conf

.SUFFIXES: .c $(O)

CFLAGS=$(CFLAGS0) -I$(TOP) -I. -D$(CEPHES_ARCH)=1

LIB=libcephes.a

include Make.common


all: $(LIB)

$(LIB): $(OBJS)
	$(AR) cr $(LIB) $(OBJS)
	$(RANLIB) $(LIB)

$(OBJS): mconf.h

install: $(LIB)

tests: dummy

links: dummy

clean:
	$(RM) $(LIB) $(OBJS)

distclean:
	$(RM) $(LIB) $(OBJS)

devclean:
	$(RM) $(LIB) $(OBJS)

dummy:
