blob: b1655fe84c6a2732d0838027a2ae69a542a23ccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
##---------------------------------------------------------------------------
## $Id$
##
## Top-level Makefile for TAO's ORB Services Tests
##
##---------------------------------------------------------------------------
##
## Process this file with automake to create Makefile.in
##
## The number in AUTOMAKE_OPTIONS is the minimum required version automake
## needed to process this file.
AUTOMAKE_OPTIONS = 1.4
SUBDIRS = \
AVStreams \
Concurrency \
CosEC_Basic \
CosEC_Multiple \
EC_Custom_Marshal \
EC_Mcast \
EC_MT_Mcast \
EC_Multiple \
EC_Throughput \
ImplRepo \
Logger \
Property \
Sched \
Sched_Conf \
Simple_Naming \
Redundant_Naming \
Simulator \
Time \
Trading \
Log \
RTCosScheduling
noinst_SCRIPTS = start_services
EXTRA_DIST = $(noinst_SCRIPTS)
|