blob: 7f1d6c7b078ec2097ff2f3e4958a6ac2f9b5fdf7 (
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
43
44
45
46
47
|
// -*- MPC -*-
// $Id$
project(*Starter): portableserver, namingexe {
after += RTSchedSynch
libs += RTSchedSynch
specific (automake) {
includes += $(TAO_ROOT)/examples/RTScheduling
includes += ..
}
Source_Files {
../Starter.cpp
}
exename = Starter
}
project(*test) : namingexe, rtscheduling_server {
after += *Starter RTSchedTestLib
libs += RTSchedTestLib Job RTSchedSynch
idlflags += -SS -St -o ..
specific (automake) {
includes += $(TAO_ROOT)/examples/RTScheduling
includes += ..
}
IDL_Files {
../MIF_Scheduling.idl
}
Source_Files {
test.cpp
MIF_DT_Creator.cpp
MIF_Task.cpp
MIF_Scheduler.cpp
../MIF_SchedulingC.cpp
}
Header_Files {
mif_dt_creator_export.h
}
exename = test
}
|