fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/28500 )
Change subject: trxcon: Makefile.am: move versioning magic to the bottom ......................................................................
trxcon: Makefile.am: move versioning magic to the bottom
This is a more usual place for manually added targets.
Change-Id: I69892f8689fd7062ca26b6f1337c972b11b1906e Related: OS#5599, OS#3761 --- M src/host/trxcon/Makefile.am 1 file changed, 7 insertions(+), 7 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/00/28500/1
diff --git a/src/host/trxcon/Makefile.am b/src/host/trxcon/Makefile.am index b51db02..0c71e97 100644 --- a/src/host/trxcon/Makefile.am +++ b/src/host/trxcon/Makefile.am @@ -1,12 +1,5 @@ AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
-# versioning magic -BUILT_SOURCES = $(top_srcdir)/.version -$(top_srcdir)/.version: - echo $(VERSION) > $@-t && mv $@-t $@ -dist-hook: - echo $(VERSION) > $(distdir)/.tarball-version - AM_CPPFLAGS = \ $(all_includes) \ -I$(top_srcdir)/include \ @@ -50,3 +43,10 @@ $(LIBOSMOCODING_LIBS) \ $(LIBOSMOGSM_LIBS) \ $(NULL) + +# versioning magic +BUILT_SOURCES = $(top_srcdir)/.version +$(top_srcdir)/.version: + echo $(VERSION) > $@-t && mv $@-t $@ +dist-hook: + echo $(VERSION) > $(distdir)/.tarball-version