# This program was created by AXELL CORPORATION.
# Copyright (C) 2015 AXELL CORPORATION, all rights reserved.

MAKE_DIRS			=	$(PLATFORM)

default:
ifeq ($(EXEGCC), ON)
	@for subdir in $(MAKE_DIRS) ; do \
		$(MAKE) -C $$subdir ; \
	done
endif

clean:
ifeq ($(EXEGCC), ON)
	@for subdir in $(MAKE_DIRS) ; do \
		$(MAKE) -C $$subdir clean ; \
	done
endif

depend:
ifeq ($(EXEGCC), ON)
	@for subdir in $(MAKE_DIRS) ; do \
		$(MAKE) -C $$subdir depend ; \
	done
endif
