summaryrefslogtreecommitdiff
path: root/cpp/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/Makefile.am')
-rw-r--r--cpp/Makefile.am20
1 files changed, 20 insertions, 0 deletions
diff --git a/cpp/Makefile.am b/cpp/Makefile.am
new file mode 100644
index 0000000..664f1ed
--- /dev/null
+++ b/cpp/Makefile.am
@@ -0,0 +1,20 @@
+lib_LTLIBRARIES = libmsgpack.la
+
+libmsgpack_la_SOURCES = \
+ object.cpp \
+ unpack.cpp \
+ unpack_inline.cpp \
+ zone.cpp
+
+nobase_include_HEADERS = \
+ msgpack/pack.hpp \
+ msgpack/unpack.hpp \
+ msgpack/object.hpp \
+ msgpack/zone.hpp
+
+noinst_HEADERS = \
+ unpack_context.hpp
+
+zone.hpp: zone.hpp.erb
+ erb $< > $@
+