#
# Makefile for library
#

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

include $(CONFIG)/Makefile.defs

  LIB_NAME = libinteg.a
      SRCS = integrate.c ode_nsteps.c ode_stop.c ode_time.c ode_poincare.c \
		last_step.c
      OBJS = integrate.o ode_nsteps.o ode_stop.o ode_time.o ode_poincare.o \
		last_step.o

OTHER_SRCS = integrate_local.h

all:: $(LIB_NAME) install

include $(CONFIG)/Makefile.rules

