forked from duosecurity/duo_unix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
35 lines (26 loc) · 860 Bytes
/
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
#
# SPDX-License-Identifier: GPL-2.0-with-classpath-exception
#
# Makefile.am
#
# Copyright (c) 2023 Cisco Systems, Inc. and/or its affiliates
# All rights reserved.
#
ACLOCAL_AMFLAGS = -I autotools
SOURCE_DATE_EPOCH=$(shell cat $(builddir)/build-date)
SUBDIRS = compat lib login_duo duo_unix_support
if PAM
SUBDIRS += pam_duo
endif
SUBDIRS += tests
SUBDIRS += tests/unity_tests
dist_doc_DATA = README.md CONTRIBUTING.md AUTHORS CHANGES $(wildcard $(builddir)/build-date) $(wildcard sbom.spdx)
LICENSES = $(wildcard LICENSES/*.txt)
licensedir = $(datadir)/LICENSES
dist_license_DATA = $(LICENSES)
# XXX - get around our default non-prefix-preserving paths for distcheck
DISTCHECK_CONFIGURE_FLAGS = --sysconfdir='$${prefix}/etc/duo'
if PAM
DISTCHECK_CONFIGURE_FLAGS += --with-pam='$${prefix}/lib/security'
endif
DISTCLEANFILES = $(builddir)/build-date