#
# Makefile for library
#

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

include $(CONFIG)/Makefile.defs

  LIB_NAME = lib1dman.a
      SRCS = man1d_install.c man1d_list.c man1d_load.c \
	man1d_linear.c man1d_acc.c man1d_funct.c man1d_build.c \
	man1d_compute.c man1d_noinv_build.c man1d_noinv_acc.c
      OBJS = man1d_install.o man1d_list.o man1d_load.o \
	man1d_linear.o man1d_acc.o man1d_funct.o man1d_build.o \
	man1d_compute.o man1d_noinv_build.o man1d_noinv_acc.o

  INCLUDE_FILES = man1d.h man1d_list.h man1d_funct.h

all:: $(LIB_NAME) install

include $(CONFIG)/Makefile.rules
