blob: a6e7b90b8a497cfbb31eda64c44c974bb6e18191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SUBDIRS = . tests
AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CXXFLAGS=$(KEA_CXXFLAGS)
lib_LTLIBRARIES = libkea-exceptions.la
libkea_exceptions_la_SOURCES = exceptions.h exceptions.cc
libkea_exceptions_la_SOURCES += isc_assert.h
libkea_exceptions_la_LDFLAGS = -no-undefined -version-info 23:0:0
CLEANFILES = *.gcno *.gcda
libkea_exceptions_includedir = $(pkgincludedir)/exceptions
libkea_exceptions_include_HEADERS = exceptions.h
libkea_exceptions_include_HEADERS += isc_assert.h
|