### static Makefile for openMosixview MAIN ###
#
#                          Makefile  -  description
#                             -------------------
#    begin                : now
#    copyright            : (C) 2003 by Matt Rechenburg
#    email                : mosixview@t-online.de
# ***************************************************************************
# *                                                                         *
# *   This program 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.                                   *
# *                                                                         *
# ***************************************************************************

TARGET=openmosixview openmosixanalyzer openmosixcollector openmosixhistory openmosixmigmon openmosixpidlog openmosixprocs
CP=/bin/cp -f
RM=/bin/rm -f
BINDIR=/usr/bin
INITDIR=/etc/init.d/

all:
	for DIR in $(TARGET); do cd $$DIR;make;cd ..;done;

install:
	for DIR in $(TARGET); do cd $$DIR;make install;cd ..;done;

clean:
	for DIR in $(TARGET); do cd $$DIR;make clean;cd ..;done;

distclean: 
	for DIR in $(TARGET); do cd $$DIR;make distclean;cd ..;done;

uninstall: 
	for DIR in $(TARGET); do cd $$DIR;make uninstall;cd ..;done;




