-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.am
50 lines (40 loc) · 1.33 KB
/
Makefile.am
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
# $Id$
ACLOCAL_AMFLAGS = -I m4
MAINTAINERCLEANFILES = \
config.log config.status \
$(srcdir)/Makefile.in \
$(srcdir)/common/config.h.in $(srcdir)/common/config.h.in~ \
$(srcdir)/configure \
$(srcdir)/install-sh $(srcdir)/ltmain.sh $(srcdir)/missing \
$(srcdir)/depcomp $(srcdir)/aclocal.m4 $(srcdir)/compile \
$(srcdir)/config.guess $(srcdir)/config.sub
SUBDIRS = common libhsm conf tools
if ENABLE_SIGNER
SUBDIRS += signer
endif
if ENABLE_ENFORCERNG
SUBDIRS += enforcer-ng
endif
EXTRA_DIST = $(srcdir)/LICENSE \
$(srcdir)/KNOWN_ISSUES \
$(srcdir)/MIGRATION \
$(srcdir)/README.enforcer_testers \
$(srcdir)/plugins/simple-dnskey-mailer/simple-dnskey-mailer.sh
install-data-hook:
$(INSTALL) -d $(DESTDIR)$(localstatedir)
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec/signer
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec/enforcer
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec/signconf
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec/unsigned
$(INSTALL) -d $(DESTDIR)$(localstatedir)/opendnssec/signed
$(INSTALL) -d $(DESTDIR)$(localstatedir)/run
$(INSTALL) -d $(DESTDIR)$(localstatedir)/run/opendnssec
docs:
(cd libhsm; $(MAKE) doxygen)
if ENABLE_ENFORCERNG
(cd enforcer-ng; $(MAKE) doxygen)
endif
if ENABLE_SIGNER
(cd signer; $(MAKE) doxygen)
endif