#
# Makefile for library
#

         TOP = ../../..
      CONFIG = $(TOP)/config
 CURRENT_DIR = src/orbit/algorithms
 INCLUDE_DIR = ../../include

include $(CONFIG)/Makefile.defs

  LIB_NAME = libalg.a
      SRCS = euler.c rk4.c rkqc.c bs.c ab4.c rk78.c
      OBJS = euler.o rk4.o rkqc.o bs.o ab4.o rk78.o

OTHER_SRCS = algorithms_local.h

all:: $(LIB_NAME) install

include $(CONFIG)/Makefile.rules


