-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
86 lines (72 loc) · 1.35 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
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
81
82
83
84
85
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
include \
common \
libcerror \
libcthreads \
libhmac \
libclocale \
libcnotify \
libcsplit \
libuna \
libcfile \
libcpath \
hmactools \
pyhmac \
po \
manuals \
tests \
ossfuzz \
msvscpp
DPKG_FILES = \
dpkg/changelog \
dpkg/changelog.in \
dpkg/compat \
dpkg/control \
dpkg/copyright \
dpkg/rules \
dpkg/libhmac-dev.install \
dpkg/libhmac.install \
dpkg/libhmac-python3.install \
dpkg/libhmac-tools.install \
dpkg/source/format
GETTEXT_FILES = \
config.rpath \
po/Makevars.in
PKGCONFIG_FILES = \
libhmac.pc.in
SETUP_PY_FILES = \
pyproject.toml \
setup.cfg \
setup.cfg.in \
setup.py
SPEC_FILES = \
libhmac.spec \
libhmac.spec.in
EXTRA_DIST = \
$(DPKG_FILES) \
$(GETTEXT_FILES) \
$(PKGCONFIG_FILES) \
$(SETUP_PY_FILES) \
$(SPEC_FILES)
DISTCLEANFILES = \
config.status \
config.cache \
config.log \
libhmac.pc \
libhmac.spec \
Makefile \
Makefile.in \
po/Makevars
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
libhmac.pc
libtool: @LIBTOOL_DEPS@
cd $(srcdir) && $(SHELL) ./config.status --recheck
lib: library
library:
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/libhmac && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))