-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
50 lines (41 loc) · 832 Bytes
/
Makefile.am
File metadata and controls
50 lines (41 loc) · 832 Bytes
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
SUBDIRS = \
artwork \
libbalde \
libbalde_template \
include \
bin \
examples \
doc \
tests
ACLOCAL_AMFLAGS = -I m4
AM_DISTCHECK_CONFIGURE_FLAGS = \
--enable-examples \
--without-leg
EXTRA_DIST = \
$(top_srcdir)/autogen.sh \
$(top_srcdir)/.version \
$(top_srcdir)/build-aux/git-version-gen \
$(top_srcdir)/README.md
BUILT_SOURCES = \
$(top_srcdir)/.version
$(top_srcdir)/.version:
echo $(VERSION) > $@-t && mv $@-t $@
dist-hook:
echo $(VERSION) > $(distdir)/.tarball-version
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = balde.pc
if BUILD_DOCS
doxygen: Doxyfile
$(MAKE) -C doc clean
$(DOXYGEN) Doxyfile
if PUBLISH_DOCS
publish_docs: doxygen
$(GITHUB_PAGES_PUBLISH) --verbose \
--cname docs.balde.io \
. doc/build/html
endif
endif
if USE_VALGRIND
valgrind: all
$(MAKE) -C tests valgrind
endif