diff options
author | Rob Austein <sra@hactrn.net> | 2013-06-10 18:48:46 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-06-10 18:48:46 +0000 |
commit | 176c13d5e71db72e237e399f6402a63475b4fead (patch) | |
tree | 84b46887808cb571e6aa4a58fe6b8beb051aacec /Makefile.in | |
parent | 4ad57ffa7bb69eb725da56ec5c4f9dcbdf95c8c8 (diff) |
rpki.version hack and rpkic command to display it.
See #543.
svn path=/trunk/; revision=5384
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 508d6973..1247ff0d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,7 @@ # $Id$ +PYTHON = @PYTHON@ + abs_top_builddir = @abs_top_builddir@ SUBDIRS = @TOP_LEVEL_SUBDIRS@ @@ -8,6 +10,8 @@ default: all test:: all +all:: VERSION + all install clean test distclean deinstall uninstall:: @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && ${MAKE} $@); done @@ -21,3 +25,8 @@ distclean clean:: distclean:: rm -rf Makefile config.log config.status + +VERSION: .FORCE + ${PYTHON} buildtools/make-version.py + +.FORCE: |