header comments

This commit is contained in:
Danny Robson 2014-05-09 13:09:36 +10:00
parent ac019fa33f
commit 43aaf832aa

View File

@ -1,3 +1,6 @@
###############################################################################
## Global build rules
ACLOCAL_AMFLAGS = -I m4
AM_CXXFLAGS = $(BOOST_CPPFLAGS) $(COMMON_CXXFLAGS) $(ZLIB_CFLAGS)
@ -5,6 +8,9 @@ AM_LDFLAGS = $(BOOST_LDFLAGS) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(COM
SUBDIRS = test
###############################################################################
## Source definitions
UTIL_FILES = \
annotations.hpp \
backtrace.hpp \
@ -157,6 +163,8 @@ if PLATFORM_WIN32
UTIL_FILES += backtrace_null.cpp
endif
###############################################################################
## Local build rules
CLEANFILES = json.cpp version.cpp ip.cpp
EXTRA_DIST = json.cpp.rl version.cpp.rl ip.cpp.rl
@ -165,6 +173,8 @@ SUFFIXES = .cpp .cpp.rl
.cpp.rl.cpp:
$(RAGEL) $(RAGELFLAGS) -C $< -o $(builddir)/$@
###############################################################################
## Library definition
lib_LTLIBRARIES = libutil.la
libutil_la_SOURCES = $(UTIL_FILES)
libutil_la_CXXFLAGS = $(AM_CXXFLAGS)