mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 13:02:13 +01:00

git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@64 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
AC_INIT(object.cpp)
|
|
AM_INIT_AUTOMAKE(msgpack, 0.1.0)
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
AC_PROG_CXX
|
|
AC_PROG_LIBTOOL
|
|
AC_CHECK_PROG(ERB, erb, erb, [$PATH])
|
|
|
|
AC_CHECK_LIB(stdc++, main)
|
|
|
|
CXXFLAGS="-O4 $CXXFLAGS -Wall -I.."
|
|
|
|
AC_OUTPUT([Makefile])
|
|
|