Combine header/source file lists for library

This commit is contained in:
Danny Robson 2011-10-26 21:44:59 +11:00
parent f7075fd9d2
commit aba0611567

View File

@ -6,71 +6,69 @@ AM_CXXFLAGS = $(BOOST_CPPFLAGS) $(COMMON_CXXFLAGS)
SUBDIRS = test SUBDIRS = test
UTIL_INCLUDE = \ UTIL_FILES = \
annotations.hpp \ annotations.hpp \
backtrace.hpp \ backtrace.hpp \
bitwise.cpp \
bitwise.hpp \ bitwise.hpp \
colour.cpp \
colour.hpp \ colour.hpp \
debug.cpp \
debug.hpp \ debug.hpp \
enable_if.hpp \ enable_if.hpp \
endian.cpp \
endian.hpp \ endian.hpp \
except.cpp \
except.hpp \ except.hpp \
extent.cpp \
extent.hpp \ extent.hpp \
fixed.cpp \
fixed.hpp \ fixed.hpp \
float.cpp \
float.hpp \ float.hpp \
fwd.hpp \ fwd.hpp \
guid.cpp \
guid.hpp \ guid.hpp \
io.cpp \
io.hpp \ io.hpp \
ip.cpp \
ip.hpp \ ip.hpp \
json.cpp \
json.hpp \ json.hpp \
maths.cpp \
maths.hpp \ maths.hpp \
maths/matrix.cpp \
maths/matrix.hpp \ maths/matrix.hpp \
maths/vector.cpp \
maths/vector.hpp \ maths/vector.hpp \
matrix.cpp \
matrix.hpp \ matrix.hpp \
nocopy.hpp \ nocopy.hpp \
point.hpp \
pool.hpp \
random.hpp \
range.hpp \
region.hpp \
signal.hpp \
si.hpp \
stream.hpp \
string.hpp \
time.hpp \
types.hpp \
version.hpp
UTIL_FILES = \
bitwise.cpp \
colour.cpp \
debug.cpp \
endian.cpp \
except.cpp \
extent.cpp \
fixed.cpp \
float.cpp \
guid.cpp \
io.cpp \
ip.cpp \
json.cpp \
maths.cpp \
maths/matrix.cpp \
maths/vector.cpp \
matrix.cpp \
point.cpp \ point.cpp \
point.hpp \
pool.cpp \ pool.cpp \
pool.hpp \
random.cpp \ random.cpp \
random.hpp \
range.cpp \ range.cpp \
range.hpp \
region.cpp \ region.cpp \
region.hpp \
si.cpp \ si.cpp \
signal.cpp \ signal.cpp \
signal.hpp \
si.hpp \
stream.cpp \ stream.cpp \
stream.hpp \
string.cpp \ string.cpp \
string.hpp \
time.cpp \ time.cpp \
time.hpp \
types.cpp \ types.cpp \
types.hpp \
vector.cpp \ vector.cpp \
version.cpp version.cpp \
version.hpp
if HAVE_EXECINFO if HAVE_EXECINFO
@ -88,6 +86,6 @@ SUFFIXES = .cpp .cpp.rl
$(RAGEL) $(RAGELFLAGS) -C $< -o $(builddir)/$@ $(RAGEL) $(RAGELFLAGS) -C $< -o $(builddir)/$@
lib_LTLIBRARIES = libutil.la lib_LTLIBRARIES = libutil.la
libutil_la_SOURCES = $(UTIL_INCLUDE) $(UTIL_FILES) libutil_la_SOURCES = $(UTIL_FILES)
libutil_la_CXXFLAGS = $(AM_CXXFLAGS) libutil_la_CXXFLAGS = $(AM_CXXFLAGS)
libutil_la_LIBADD = $(BOOST_SYSTEM_LIB) libutil_la_LIBADD = $(BOOST_SYSTEM_LIB)