1234567891011121314151617181920212223242526272829303132333435363738394041 |
-
-
-
-
-
-
-
-
-
-
- CXXFLAGS = $(SNF_CXXFLAGS)
-
- noinst_LIBRARIES = \
- libCodeDweller.a
-
- libCodeDweller_a_SOURCES = \
- @top_srcdir@/CodeDweller/base64codec.cpp \
- @top_srcdir@/CodeDweller/configuration.cpp \
- @top_srcdir@/CodeDweller/networking.cpp \
- @top_srcdir@/CodeDweller/threading.cpp \
- @top_srcdir@/CodeDweller/mangler.cpp \
- @top_srcdir@/CodeDweller/timing.cpp
-
- noinst_HEADERS = \
- @top_srcdir@/CodeDweller/base64codec.hpp \
- @top_srcdir@/CodeDweller/configuration.hpp \
- @top_srcdir@/CodeDweller/configuration.inline.hpp \
- @top_srcdir@/CodeDweller/histogram.hpp \
- @top_srcdir@/CodeDweller/networking.hpp \
- @top_srcdir@/CodeDweller/networking.inline.hpp \
- @top_srcdir@/CodeDweller/threading.hpp \
- @top_srcdir@/CodeDweller/faults.hpp \
- @top_srcdir@/CodeDweller/mangler.hpp \
- @top_srcdir@/CodeDweller/timing.hpp
-
- EXTRA_DIST = \
- Makefile.am \
- ChangeLog
-
- clean-local:
- rm -f *.gcno *.gcov *.gcda *~
|