diff options
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: |