mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-27 00:35:18 +01:00
21 lines
364 B
Makefile
21 lines
364 B
Makefile
lib_LTLIBRARIES = libmsgpackc.la
|
|
|
|
libmsgpackc_la_SOURCES = \
|
|
unpack.c \
|
|
object.c \
|
|
vrefbuffer.c \
|
|
zone.c
|
|
|
|
nobase_include_HEADERS = \
|
|
msgpack.h \
|
|
msgpack/sbuffer.h \
|
|
msgpack/vrefbuffer.h \
|
|
msgpack/pack.h \
|
|
msgpack/unpack.h \
|
|
msgpack/object.h \
|
|
msgpack/zone.h
|
|
|
|
# -version-info CURRENT:REVISION:AGE
|
|
libmsgpackc_la_LDFLAGS = -version-info 1:0:0
|
|
|