# Copyright 2003  Alexander V. Diemand
#
#    This file is part of MolTalk.
#
#    MolTalk is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    MolTalk is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with MolTalk; if not, write to the Free Software
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 


ARCH1=$(shell uname -s)
ARCH2=$(shell uname -m)

ARCH=$(ARCH1)_$(ARCH2)

# load GNUstep stuff
include $(GNUSTEP_MAKEFILES)/common.make

# library name
LIBRARY_NAME = libmoltalk
libmoltalk_HEADER_FILES_INSTALL_DIR = /MolTalk

$(LIBRARY_NAME)_OBJC_FILES =	Atom.m \
				Chain.m \
				privateChain.m \
				Coordinates.m \
				Residue.m \
				privateResidue.m \
				Selection.m \
				privateSelection.m \
				Structure.m \
				privateStructure.m \
				String.m \
				Stream.m \
				FileStream.m \
				CompressedFileStream.m \
				Matrix53.m \
				Matrix44.m \
				Matrix.m \
				privateMatrix.m \
				Vector.m \
				PDBParser.m \
				PairwiseStrxAlignment.m \
				StructureFactory.m \
				ChainFactory.m \
				ResidueFactory.m\


$(LIBRARY_NAME)_HEADER_FILES =	MolTalk.oh \
				Atom.oh \
				Chain.oh \
				Coordinates.oh \
				Residue.oh \
				Selection.oh \
				Structure.oh \
				String.oh \
				Stream.oh \
				FileStream.oh \
				CompressedFileStream.oh \
				Matrix53.oh \
				Matrix44.oh \
				Matrix.oh \
				Vector.oh \
				PairwiseStrxAlignment.oh \
				StructureFactory.oh \
				ChainFactory.oh \
				ResidueFactory.oh \


$(LIBRARY_NAME)_C_FILES =

$(LIBRARY_NAME)_DLL_DEF = libmoltalk.def

-include GNUmakefile.preamble

include $(GNUSTEP_MAKEFILES)/library.make

-include GNUmakefile.postamble

