mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-12-26 10:10:50 +01:00
Updated the license from the license from the Apache License Version 2.0 to the Boost Software License, Version 1.0. Removed unused files.
20 lines
329 B
Makefile
20 lines
329 B
Makefile
SUBDIRS = src test
|
|
|
|
DOC_FILES = \
|
|
README.md \
|
|
LICENSE_1_0.txt \
|
|
NOTICE \
|
|
msgpack_vc8.vcproj \
|
|
msgpack_vc8.sln
|
|
|
|
EXTRA_DIST = \
|
|
$(DOC_FILES) CMakeLists.txt test/CMakeLists.txt example
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = msgpack.pc
|
|
|
|
doxygen:
|
|
./preprocess clean
|
|
cd src && $(MAKE) doxygen
|
|
./preprocess
|