blob: c2c6ea62c3a330fda05ee7deed68b9f0c675b7e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#----------------------------------------------------------------------------
#
# $Id$
#
# Makefile for the ACE "one-button" tests directory
#----------------------------------------------------------------------------
# This default rule is here so invoking make realclean will do
# work when recursing through subdirectories
.DEFAULT:
@$(MAKE) -f Makefile.libs $@
@$(MAKE) -f Makefile.tests $@
@$(MAKE) -f Makefile.dirs SUBDIR_MAKEFILE=Makefile $@
# Invoke Makefile.libs first to build the libTest_Output and the other
# libraries, then invoke Makefile.tests and Makefile.dirs to recurse
# through subdirectories
all:
@$(MAKE) -f Makefile.libs $@
@$(MAKE) -f Makefile.tests $@
@$(MAKE) -f Makefile.dirs SUBDIR_MAKEFILE=Makefile $@
|