blob: b8d222e5efe44a42529585c717b3c384389efc83 [file] [log] [blame]
#############################################################################
# Copyright (c) 2013 Linaro
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Linaro <linaro-dev@lists.linaro.org>
#############################################################################
DIRS = alarmdevtest ashmemtest-basic ashmemtest-expanded logger #sync-basic does not build atm
CLEANDIRS = $(foreach dir,$(DIRS),clean-$(dir))
.PHONY: all clean $(DIRS) $(CLEANDIRS)
all: $(DIRS)
$(DIRS):
$(MAKE) -C $@
clean: $(CLEANDIRS)
$(CLEANDIRS):
$(MAKE) -C $(@:clean-%=%) clean
help:
@echo 'targets:'
@echo ' all: builds all tests'
@echo ' clean: cleans all generatd files'