#
# Makefile for library
#

          TOP = $(DSTOOL)
       CONFIG = $(TOP)/config
  CURRENT_DIR = ./SSMan1D
  INCLUDE_DIR = $(TOP)/src/include $(TOP)

include $(CONFIG)/Makefile.defs

  LIB_NAME = libssman1d.a
      SRCS = ssman1d.c ssman1d_init.c s1dman_compute.c ssman1d_ode.c curvature_proc.c
      OBJS = ssman1d.o ssman1d_init.o s1dman_compute.o ssman1d_ode.o curvature_proc.o

  INCLUDE_FILES = ssman1d.h

all:: $(LIB_NAME)

include $(CONFIG)/Makefile.rules

