Differences between revisions 12 and 13
Revision 12 as of 2010-01-28 13:01:59
Size: 2268
Comment:
Revision 13 as of 2010-02-22 11:19:30
Size: 2228
Comment: better make rule (thanks to Teemu Murtola)
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
hgstamp: update_hgstamp
update_hgsta
mp:
        [ -f hgstamp ] || touch hgstamp
        echo $(HGVERSION) | cmp -s hgstamp - || echo $(HGVERSION) > hgstamp
hgstamp: dummy
        [ -f $@ ] || touch $@
        echo $(HGVERSION) | cmp -s $@ - || echo $(HGVERSION) > $@

du
mmy: ;
Line 24: Line 25:
In this example version.c depend has the extra dependency hgstamp, which is generated by the rule 'update_hgstamp'. This rule updates hgstamp if and only if the version has ''really'' changed. In this example version.o has the extra dependency hgstamp. The hgstamp rule updates hgstamp if and only if the version has ''really'' changed.
To make sure the hgstamp rule will be executed every time, it depends on a dummy rule, which does nothing.
Line 34: Line 36:
hgstamp: update_hgstamp
update_hgsta
mp:
        [ -f hgstamp ] || touch hgstamp
        echo $(HGVERSION) | cmp -s hgstamp - || echo $(HGVERSION) > hgstamp
hgstamp: dummy
        [ -f $@ ] || touch $@
        echo $(HGVERSION) | cmp -s $@ - || echo $(HGVERSION) > $@

du
mmy: ;
Line 50: Line 53:
hgid.tex: update_hgid
update_hgid:

        [ -f hgid.tex ] || touch hgid.tex
        echo '$(HGID)' | cmp -s hgid.tex - || echo '$(HGID)' > hgid.tex
hgid.tex: dummy
        [ -f $@ ] || touch $@
        echo '$(HGID)' | cmp -s $@ - || echo '$(HGID)' > $@

dummy: ;

Simple

Add the following line to your Makefile

HGVERSION:= $(shell hg parents --template 'hgid: {node|short}')

and

-DHGVERSION="\"${HGVERSION}\""

to your CPPFLAGS. Now one can use the define HGVERSION inside the code.

Rebuild files using HGVERSION

Make rebuilds targets only if one of the dependencies is newer. That means even if the version has changed, due to a change somewhere, files using HGVERSION will not be rebuild automatically. To overcome this add new dependency in the Makefile to updated these files:

version.o: hgstamp
hgstamp: dummy
        [ -f $@ ] || touch $@
        echo $(HGVERSION) | cmp -s $@ - || echo $(HGVERSION) > $@

dummy: ;

In this example version.o has the extra dependency hgstamp. The hgstamp rule updates hgstamp if and only if the version has really changed. To make sure the hgstamp rule will be executed every time, it depends on a dummy rule, which does nothing.

Autotools

If you are using automake add the following lines to your Makefile.am

HGVERSION:= $(shell hg -R $(top_srcdir) parents --template 'hgid: {node|short}' 2> /dev/null || grep node $(top_srcdir)/.hg_archival.txt 2> /dev/null || true )
AM_CPPFLAGS = -DHGVERSION="\"${HGVERSION}\""

version.o: hgstamp
hgstamp: dummy
        [ -f $@ ] || touch $@
        echo $(HGVERSION) | cmp -s $@ - || echo $(HGVERSION) > $@

dummy: ;

The definition of HGVERSION is more robust here. It tries to get the version in the following order

  • hg parents, the -R option is added to prevent hg to search in lower directories in the case we don't have a repository
  • grabbing it from .hg_archival.txt, in case we are using a tarball made by hg archive
  • undefined

LaTeX

Just a add the following lines to your Makefile

HGID:=$(shell hg parents -R . --template "{node|short}" | sed 's/.*/\\renewcommand{\\hgid}{&}/')
hgid.tex: dummy
        [ -f $@ ] || touch $@
        echo '$(HGID)' | cmp -s $@ - || echo '$(HGID)' > $@

dummy: ;

and this lines to your main tex file

\newcommand{\hgid}{null}
\input{hgid}

now one can use the command \hgid to get the version everywhere.


CategoryHowTo

VersioningWithMake (last edited 2015-08-10 06:26:49 by follower)