Cleanup: remove superfluous argument to consumed size create
[lttng-tools.git] / include / Makefile.am
CommitLineData
88564da0 1##
337d64f0
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##
337d64f0
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; \
337d64f0
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; \
337d64f0
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##
337d64f0
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##
337d64f0 60.PHONY: version.i
88564da0 61
337d64f0 62CLEANFILES = version.i.tmp
ec148ec6 63
337d64f0
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 \
9245bd0e 82 lttng/load.h \
a58c490f 83 lttng/endpoint.h \
db66e574 84 lttng/rotation.h \
337d64f0 85 lttng/location.h
da3c9ec1 86
a58c490f
JG
87lttngactioninclude_HEADERS= \
88 lttng/action/action.h \
89 lttng/action/notify.h
90
91lttngconditioninclude_HEADERS= \
92 lttng/condition/condition.h \
93 lttng/condition/buffer-usage.h \
e8360425 94 lttng/condition/session-consumed-size.h \
a58c490f
JG
95 lttng/condition/evaluation.h
96
97lttngnotificationinclude_HEADERS= \
98 lttng/notification/channel.h \
99 lttng/notification/notification.h
100
101lttngtriggerinclude_HEADERS= \
102 lttng/trigger/trigger.h
103
55d09795
MD
104noinst_HEADERS = \
105 lttng/snapshot-internal.h \
00c76cea 106 lttng/health-internal.h \
9245bd0e 107 lttng/save-internal.h \
a58c490f
JG
108 lttng/load-internal.h \
109 lttng/action/action-internal.h \
110 lttng/action/notify-internal.h \
111 lttng/condition/condition-internal.h \
112 lttng/condition/buffer-usage-internal.h \
e8360425 113 lttng/condition/session-consumed-size-internal.h \
a58c490f
JG
114 lttng/condition/evaluation-internal.h \
115 lttng/notification/notification-internal.h \
116 lttng/trigger/trigger-internal.h \
117 lttng/endpoint-internal.h \
932a07e0 118 lttng/notification/channel-internal.h \
159e8e73 119 lttng/channel-internal.h \
8abe313a 120 lttng/rotate-internal.h \
434131e4 121 lttng/ref-internal.h \
337d64f0
MJ
122 lttng/location-internal.h \
123 version.h \
124 version.i
This page took 0.048951 seconds and 5 git commands to generate.