# # Makefile for the MathArray on GNUstep # # Copyright (C) 1997 Adam Fedor # # Written by: Adam Fedor # PACKAGE_NEEDS_CONFIGURE = YES PACKAGE_NAME = MathArray include $(GNUSTEP_MAKEFILES)/common.make srcdir = . MATHARRAY_VERSION = 1.1 MATHARRAY_SCORE_VERSION = `echo $(MATHARRAY_VERSION) | tr . _` VERSION = $(MATHARRAY_VERSION) # The library to be compiled LIBRARY_NAME=libMathArray # Source files CLASSES = \ MANumber.m \ MaskedException.m \ MathArray.m \ MathArrayExtensions.m \ MathDecimalArray.m \ MAValueData.m HFILES = \ MaskedException.h \ MathArray.h \ MathArrayExtensions.h \ MAValue.h \ MAValueData.h \ NSObjectExtra.h \ array_encoding.h \ complex.h PRIVATE_HFILES = \ MathArrayPrivate.h \ MathComplexArrayPrivate.h \ MAConcreteNumber.h \ MathTemplateArray.h MFILES = \ array_functions.m \ MathComplexArrayPrivate.m \ NSObjectExtra.m libMathArray_C_FILES = \ array_encoding.c \ complex.c OTHER_SOURCES = README NEWS Makefile.in TODO INSTALL conf.h.in configure.in \ common.make MAConcreteNumber.m MATemplateArray.m MAComplexArray.m # The Objective-C source files to be compiled libMathArray_OBJC_FILES = $(CLASSES) $(MFILES) $(MANUMBER_MFILES) \ $(MATHTEMPLATE_MFILES) $(MATHCOMPLEX_MFILES) libMathArray_HEADER_FILES_DIR = MathArray libMathArray_HEADER_FILES_INSTALL_DIR = MathArray libMathArray_HEADER_FILES = $(HFILES) -include Makefile.preamble include $(GNUSTEP_MAKEFILES)/library.make -include Makefile.postamble