diff options
Diffstat (limited to 'dwr/Makefile.am')
-rw-r--r-- | dwr/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dwr/Makefile.am b/dwr/Makefile.am new file mode 100644 index 0000000..afd9925 --- /dev/null +++ b/dwr/Makefile.am @@ -0,0 +1,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 |