summaryrefslogtreecommitdiffstats
path: root/src/hooks/dhcp/bootp/Makefile.am
blob: de796531e446e525d2adfc8ed8d42da33b6a70b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
SUBDIRS = . tests

AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
AM_CPPFLAGS += $(BOOST_INCLUDES)
AM_CXXFLAGS  = $(KEA_CXXFLAGS)

# Ensure that the message file and doxygen file is included in the distribution
EXTRA_DIST = bootp_messages.mes
EXTRA_DIST += bootp.dox

CLEANFILES = *.gcno *.gcda

# convenience archive

noinst_LTLIBRARIES = libbootp.la

libbootp_la_SOURCES  = bootp_callouts.cc
libbootp_la_SOURCES += bootp_log.cc bootp_log.h
libbootp_la_SOURCES += bootp_messages.cc bootp_messages.h
libbootp_la_SOURCES += version.cc

libbootp_la_CXXFLAGS = $(AM_CXXFLAGS)
libbootp_la_CPPFLAGS = $(AM_CPPFLAGS)

# install the shared object into $(libdir)/kea/hooks
lib_hooksdir = $(libdir)/kea/hooks
lib_hooks_LTLIBRARIES = libdhcp_bootp.la

libdhcp_bootp_la_SOURCES  =
libdhcp_bootp_la_LDFLAGS  = $(AM_LDFLAGS)
libdhcp_bootp_la_LDFLAGS  += -avoid-version -export-dynamic -module
libdhcp_bootp_la_LIBADD = libbootp.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/stats/libkea-stats.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/dhcp/libkea-dhcp++.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/hooks/libkea-hooks.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/database/libkea-database.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/cc/libkea-cc.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/asiolink/libkea-asiolink.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/dns/libkea-dns++.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/cryptolink/libkea-cryptolink.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/log/libkea-log.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/util/libkea-util.la
libdhcp_bootp_la_LIBADD += $(top_builddir)/src/lib/exceptions/libkea-exceptions.la
libdhcp_bootp_la_LIBADD += $(LOG4CPLUS_LIBS)
libdhcp_bootp_la_LIBADD += $(CRYPTO_LIBS)
libdhcp_bootp_la_LIBADD += $(BOOST_LIBS)

# If we want to get rid of all generated messages files, we need to use
# make maintainer-clean. The proper way to introduce custom commands for
# that operation is to define maintainer-clean-local target. However,
# make maintainer-clean also removes Makefile, so running configure script
# is required.  To make it easy to rebuild messages without going through
# reconfigure, a new target messages-clean has been added.
maintainer-clean-local:
	rm -f bootp_messages.h bootp_messages.cc

# To regenerate messages files, one can do:
#
# make messages-clean
# make messages
#
# This is needed only when a .mes file is modified.
messages-clean: maintainer-clean-local

if GENERATE_MESSAGES

# Define rule to build logging source files from message file
messages: bootp_messages.h bootp_messages.cc
	@echo Message files regenerated

bootp_messages.h bootp_messages.cc: bootp_messages.mes
	$(top_builddir)/src/lib/log/compiler/kea-msg-compiler $(top_srcdir)/src/hooks/dhcp/bootp/bootp_messages.mes

else

messages bootp_messages.h bootp_messages.cc:
	@echo Messages generation disabled. Configure with --enable-generate-messages to enable it.

endif