| # Copyright (c) 2020 The HIBA Authors All rights reserved. |
| # Use of this source code is governed by a BSD-style |
| # license that can be found in the LICENSE file. |
| VERSION_INFO = -version-info $(SONAME_CURRENT):$(SONAME_REVISION):$(SONAME_AGE) |
| AUTOMAKE_OPTIONS = subdir-objects |
| ACLOCAL_AMFLAGS = -I m4 |
| |
| ARFLAGS = cr |
| AM_LIBTOOLFLAGS = "--preserve-dup-deps" |
| |
| include_HEADERS = hiba.h extensions.h errors.h checks.h certificates.h revocations.h |
| |
| lib_LTLIBRARIES = libhiba.la |
| libhiba_la_SOURCES = extensions.c errors.c checks.c certificates.c revocations.c |
| libhiba_la_CFLAGS = |
| libhiba_la_LDFLAGS = $(VERSION_INFO) |
| |
| sbin_PROGRAMS = hiba-chk hiba-gen hiba-grl |
| |
| hiba_chk_SOURCES = hiba-chk.c util.c |
| hiba_chk_LDADD = -lhiba $(extra_LIBS) |
| hiba_chk_DEPENDENCIES = libhiba.la |
| |
| hiba_gen_SOURCES = hiba-gen.c util.c |
| hiba_gen_LDADD = -lhiba $(extra_LIBS) |
| hiba_gen_DEPENDENCIES = libhiba.la |
| |
| hiba_grl_SOURCES = hiba-grl.c util.c |
| hiba_grl_LDADD = -lhiba $(extra_LIBS) |
| hiba_grl_DEPENDENCIES = libhiba.la |
| |
| noinst_PROGRAMS = generate-test-certs |
| |
| generate_test_certs_SOURCES = testdata/generate-test-certs.c |
| generate_test_certs_LDADD = -lhiba $(extra_LIBS) -lhiba $(extra_LIBS) |
| generate_test_certs_DEPENDENCIES = libhiba.la |
| |
| dist_sbin_SCRIPTS = hiba-ca.sh |
| |
| man1_MANS = hiba-chk.1 hiba-gen.1 hiba-grl.1 hiba-ca.sh.1 |