lib: remove unused parameters in internal component creation functions
[babeltrace.git] / src / common / Makefile.am
CommitLineData
0235b0db
MJ
1# SPDX-License-Identifier: MIT
2
056632bf 3AM_CPPFLAGS += -DBABELTRACE_PLUGINS_DIR=\"$(BABELTRACE_PLUGINS_DIR)\"
578e048b
MJ
4
5noinst_LTLIBRARIES = libbabeltrace2-common.la
6
7libbabeltrace2_common_la_SOURCES = \
578e048b 8 assert.c \
6162e6b7 9 assert.h \
578e048b 10 common.c \
6162e6b7
MJ
11 common.h \
12 uuid.c \
13 uuid.h
578e048b
MJ
14
15noinst_HEADERS = \
16 align.h \
578e048b 17 list.h \
91d81473 18 macros.h \
578e048b 19 mmap-align.h \
89e18e1e
PP
20 safe.h
21
578e048b
MJ
22## This target generates an include file that contains the git version
23## string of the current branch, it must be continuously updated when
24## we build in the git repo and shipped in dist tarballs to reflect the
25## status of the tree when it was generated. If the tree is clean and
26## the current commit is tag a starting with "v", consider this a
27## release version and set an empty git version.
90eb0380 28
578e048b
MJ
29version_verbose = $(version_verbose_@AM_V@)
30version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
c7a25f98 31version_verbose_0 = @echo " GEN " $@;
578e048b
MJ
32
33version.i:
90eb0380
SM
34 $(version_verbose)GREP=$(GREP) SED=$(SED) TOP_SRCDIR="$(top_srcdir)" $(SHELL) $(srcdir)/gen-version-i.sh
35
36dist_noinst_SCRIPTS = gen-version-i.sh
578e048b
MJ
37
38##
39## version.i is defined as a .PHONY target even if it's a real file,
40## we want the target to be re-run on every make.
41##
42.PHONY: version.i
43
44CLEANFILES = version.i.tmp
45
46##
47## Only clean "version.i" on dist-clean, we need to keep it on regular
48## clean when it's part of a dist tarball.
49##
50DISTCLEANFILES = version.i
89e18e1e
PP
51
52noinst_HEADERS += version.h version.i
This page took 0.067912 seconds and 4 git commands to generate.