forked from libyal/libcpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
72 lines (59 loc) · 1.2 KB
/
Makefile.am
File metadata and controls
72 lines (59 loc) · 1.2 KB
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
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
include \
common \
libcerror \
libclocale \
libcsplit \
libuna \
libcpath \
po \
manuals \
tests \
msvscpp
DPKG_FILES = \
dpkg/changelog \
dpkg/changelog.in \
dpkg/compat \
dpkg/control \
dpkg/copyright \
dpkg/rules \
dpkg/libcpath-dev.install \
dpkg/libcpath.install \
dpkg/source/format
GETTEXT_FILES = \
config.rpath \
po/Makevars.in
PKGCONFIG_FILES = \
libcpath.pc.in
SPEC_FILES = \
libcpath.spec \
libcpath.spec.in
EXTRA_DIST = \
$(DPKG_FILES) \
$(GETTEXT_FILES) \
$(PKGCONFIG_FILES) \
$(SPEC_FILES)
DISTCLEANFILES = \
config.status \
config.cache \
config.log \
libcpath.pc \
libcpath.spec \
Makefile \
Makefile.in \
po/Makevars
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
libcpath.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)/libclocale && $(MAKE) $(AM_MAKEFLAGS)
cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS)
cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS)
cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS)
cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS)