C++ Library containing a lot of needful things: Stack Trace, Command Line Parser, Resource Handling, Configuration Files, Unix Command Execution, Directories, Regular Expressions, Tokenizer, Function Trace, Standard Extensions.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
CLEANFILES = doxygen.error |
|
AM_CPPFLAGS = -I.. |
|
|
|
examplesdir = ${pkgdatadir}/examples |
|
examples_DATA = examples/* |
|
htmldir = ${pkgdatadir}/doc/html |
|
html_DATA = doc/html/* |
|
EXTRA_DIST = test.dat ${examples_DATA} ${html_DATA} |
|
|
|
lib_LTLIBRARIES = libmrw.la libmrwexcstderr.la |
|
|
|
libmrw_la_SOURCES = mrw.hpp \ |
|
auto.hpp auto.cpp unistd.hpp \ |
|
stacktrace.hpp stacktrace.cpp exception.hpp exception.cpp \ |
|
exec.hpp exec.cpp |
|
libmrw_la_LDFLAGS = -version-info @MAJOR@:@MINOR@ |
|
libmrw_la_LIBADD = -liberty -lbfd |
|
|
|
libmrwexcstderr_la_SOURCES = autostacktracestderr.cpp |
|
libmrwexcstderr_la_LDFLAGS = -version-info @MAJOR@:@MINOR@ |
|
libmrwexcstderr_la_LIBADD = -lmrw |
|
|
|
check_PROGRAMS = auto_test exec_test stacktrace_test |
|
auto_test_SOURCES = auto_test.cpp |
|
auto_test_CPPFLAGS = -I.. -g3 |
|
auto_test_LDADD = -lmrw -lcppunit |
|
exec_test_SOURCES = exec_test.cpp |
|
exec_test_CPPFLAGS = -I.. -g3 |
|
exec_test_LDADD = -lmrw -lcppunit |
|
stacktrace_test_SOURCES = stacktrace_test.cpp |
|
stacktrace_test_CPPFLAGS = -I.. -g3 |
|
stacktrace_test_LDADD = -lmrw -lcppunit |
|
TESTS = ${check_PROGRAMS} |
|
|
|
doc: doc/html/index.html |
|
doc/html/index.html: doxyfile *.[ch]pp |
|
doxygen doxyfile
|
|
|