blob: afd99255abebf0178fa86db781a6a5240bc0535c (
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
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-DCUR_WORKING_DIR='"@BASE_CUR_WORKING_DIR@/dwr"'
noinst_LIBRARIES = \
libDw-rtfl.a
libDw_rtfl_a_SOURCES = \
box.hh \
box.cc \
graph.hh \
graph.cc \
hbox.hh \
hbox.cc \
hideable.hh \
hideable.cc \
label.hh \
label.cc \
toggle.hh \
toggle.cc \
tools.hh \
tools.cc \
vbox.hh \
vbox.cc
if USE_GRAPH2
libDw_rtfl_a_SOURCES += \
graph2.hh \
graph2.cc \
graph2_iterator.cc
endif
|