# MTP3 test binary makefile
# Author: Timo Pärnänen

# This is the name of the executable

# Subdirs that contain necessary modules
SUBDIRS = adapter \
	sscop \
	uni

# include a Rules file
include $(TOVESRC)/Rules.Make

# Do make in all subdirs
all :
	for i in $(SUBDIRS); do make -C $$i; done

# Make clean in all subdirs
clean:
	for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done

# Make dependencies in all subdirs
dep:
	for i in $(SUBDIRS); do $(MAKE) -C $$i dep; done
	makedepend -Y $(INC_DIRS) $(DEFS) *.cpp 2> /dev/null

#
# Dependencies below, next line is used by makedepend, so
# DO NOT DELETE
