mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-27 08:46:11 +01:00

About pkg-config: From http://www.freedesktop.org/wiki/Software/pkg-config pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries). It is language-agnostic, so it can be used for defining the location of documentation tools, for instance. pkg-config is a widely used build helper tool. Major build tools such as GNU Autoconf, CMake and so on support pkg-config. MessagePack users can build their software more easily.
24 lines
357 B
Makefile
24 lines
357 B
Makefile
SUBDIRS = src test
|
|
|
|
DOC_FILES = \
|
|
README.md \
|
|
LICENSE \
|
|
NOTICE \
|
|
msgpack_vc8.vcproj \
|
|
msgpack_vc8.sln \
|
|
msgpack_vc2008.vcproj \
|
|
msgpack_vc2008.sln \
|
|
msgpack_vc.postbuild.bat
|
|
|
|
EXTRA_DIST = \
|
|
$(DOC_FILES)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = msgpack.pc
|
|
|
|
doxygen:
|
|
./preprocess clean
|
|
cd src && $(MAKE) doxygen
|
|
./preprocess
|
|
|