Backport: Port dynamic buffer to stable 2.9
[lttng-tools.git] / include / Makefile.am
CommitLineData
88564da0 1##
0b83088a
MJ
2## This target generates an include file that contains the git version
3## string of the current branch, it must be continuously updated when
4## we build in the git repo and shipped in dist tarballs to reflect the
5## status of the tree when it was generated. If the tree is clean and
6## the current commit is tag a starting with "v", consider this a
7## release version and set an empty git version.
88564da0 8##
0b83088a
MJ
9## Here is what the inline script does:
10##
11## First, delete any stale "version.i.tmp" file.
12##
13## If "bootstrap" and ".git" exists in the top source directory and the git
14## executable is available, get the current git version string in the form:
15##
16## "latest_tag"(-"number_of_commits_on_top")(-g"latest_commit_hash")(-dirty)
17##
18## And store it in "version.i.tmp", if the current commit is tagged, the tag
19## starts with "v" and the tree is clean, consider this a release version and
20## overwrite the git version with an empty string in "version.i.tmp".
21##
22## If we don't have a "version.i.tmp" nor a "version.i", generate an empty
23## string as a failover.
24##
25## If we don't have a "version.i" or we have both files and they are different,
26## copy "version.i.tmp" over "version.i". This way the dependent targets are
27## only rebuilt when the version string changes.
28##
29version_verbose = $(version_verbose_@AM_V@)
30version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
31version_verbose_0 = @echo " GEN " $@;
32
33version.i:
34 $(version_verbose)rm -f version.i.tmp; \
35 if (test -r "$(top_srcdir)/bootstrap" && test -r "$(top_srcdir)/.git") && \
36 test -x "`which git 2>&1;true`"; then \
37 GIT_VERSION_STR="`cd "$(top_srcdir)" && git describe --tags --dirty`"; \
38 GIT_CURRENT_TAG="`cd "$(top_srcdir)" && git describe --tags --exact-match --match="v[0-9]*" HEAD 2> /dev/null`"; \
39 echo "#define GIT_VERSION \"$$GIT_VERSION_STR\"" > version.i.tmp; \
40 if ! $(GREP) -- "-dirty" version.i.tmp > /dev/null && \
41 test "x$$GIT_CURRENT_TAG" != "x"; then \
42 echo "#define GIT_VERSION \"\"" > version.i.tmp; \
88564da0 43 fi; \
0b83088a
MJ
44 fi; \
45 if test ! -f version.i.tmp; then \
46 if test ! -f version.i; then \
47 echo '#define GIT_VERSION ""' > version.i; \
88564da0 48 fi; \
0b83088a
MJ
49 elif test ! -f version.i || \
50 test x"`cat version.i.tmp`" != x"`cat version.i`"; then \
51 mv version.i.tmp version.i; \
52 fi; \
53 rm -f version.i.tmp; \
54 true
88564da0
RB
55
56##
0b83088a
MJ
57## version.i is defined as a .PHONY target even if it's a real file,
58## we want the target to be re-run on every make.
88564da0 59##
0b83088a 60.PHONY: version.i
88564da0 61
0b83088a 62CLEANFILES = version.i.tmp
ec148ec6 63
0b83088a
MJ
64##
65## Only clean "version.i" on dist-clean, we need to keep it on regular
66## clean when it's part of a dist tarball.
67##
68DISTCLEANFILES = version.i
4c6ac053 69
55d09795 70lttnginclude_HEADERS = \
d74df422 71 lttng/health.h \
55d09795 72 lttng/lttng.h \
1239a312
DG
73 lttng/constant.h \
74 lttng/channel.h \
75 lttng/domain.h \
76 lttng/event.h \
77 lttng/handle.h \
78 lttng/session.h \
55d09795 79 lttng/lttng-error.h \
00c76cea 80 lttng/snapshot.h \
88564da0 81 lttng/save.h \
0b83088a 82 lttng/load.h
da3c9ec1 83
55d09795
MD
84noinst_HEADERS = \
85 lttng/snapshot-internal.h \
00c76cea 86 lttng/health-internal.h \
9245bd0e 87 lttng/save-internal.h \
0b83088a
MJ
88 lttng/load-internal.h \
89 version.h \
90 version.i
This page took 0.043587 seconds and 5 git commands to generate.