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
48
49
50
51
52
53
54
55
56
57
58
|
## Process this file with automake to produce Makefile.in
## Created by Anjuta
libstateval_la_CPPFLAGS = \
$(SIGC_CFLAGS) \
$(PLUXX_CFLAGS) \
$(LOG4CXX_CFLAGS) \
$(PTHREAD_CFLAGS)
libstateval_la_CFLAGS =\
-Wall\
-g
lib_LTLIBRARIES = \
libstateval.la
libstateval_la_SOURCES = \
Action.cpp \
CompoundState.cpp \
Condition.cpp \
DecisionState.cpp \
Exceptions.cpp \
FireEventAction.cpp \
HistoryState.cpp \
SimpleState.cpp \
State.cpp \
Statemachine.cpp \
Transition.cpp \
Variable.cpp \
View.cpp \
ViewState.cpp \
StateMachineAccessor.cpp \
StateMachineLoop.cpp \
Loader.cpp \
stringUtil.cpp \
stringUtil.h \
Thread.cpp \
MemoryUtil.h \
ViewManagerPluginLoader.cpp \
ViewManagerPluginLoader.h \
searchFile.cpp \
searchFile.h \
ChangeVariableAction.cpp \
StateMachineAccessorPImpl.h \
ViewCache.cpp \
Widget.cpp \
ViewManager.cpp
libstateval_la_CXXFLAGS = \
-I$(top_srcdir)/include
libstateval_la_LIBADD = \
$(SIGC_LIBS) \
$(PLUXX_LIBS) \
$(LOG4CXX_LIBS) \
$(PTHREAD_LIBS)
|