# Generated automatically from Makefile.in by configure.
# --------------------------------------------------------------------
#    Copyright (C) 1999,  Daniel Schulz	   
# 
#    This file is part of the TDI library. The TDI library implements  
#    the generic part of the Thread Debug Interface for POSIX Threads
#    Implementations - TDI.
#
#    This library is free software; you can redistribute it and/or
#    modify it under the terms of the GNU Library General Public
#    License as published by the Free Software Foundation; either
#    version 2 of the License, or (at your option) any later version.
#
#    This library 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
#    Library General Public License for more details.
#
#    You should have received a copy of the GNU Library General Public
#    License along with this library; if not, write to the Free
#    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#    Report problems and direct all questions to:
#
#    tdi-bugs@informatik.hu-berlin.de
#	
# $Author: dschulz $ $Date: 1999/05/03 23:08:11 $ $Name: TDI-alpha-release-2 $ 
# File: Makefile.in 
#
# ----------------------------------------------------------------------

SHELL       = bash
LIBPATH     = /usr/lib
INCLUDEPATH = /usr/include

INCLUDE_FILES = tdi.h tdi-client.h tdi-server.h tdi-comm.h

VERSION = 0.0.1

new:
	cd Client && make new
	cd Server && make new


.PHONY: configure

configure:
	cd Comm && configure
	cd Server && configure
	cd Client && configure

clean:
	rm -rf Backup/*
	cd Server && make clean
	cd Client && make clean


# prefix was specified with /home/mueller/tdi/TDI/..
install:
	cd Client && make install 
	cd Server && make install
	cp $(INCLUDE_FILES:%=include/%) /home/mueller/tdi/TDI/../include 

backup:
	make clean
	cd .. && tar czvf TDI$(VERSION)`date +%b%d`.tgz TDI && mv TDI*.tgz TDI/Backup

