diff options
author | wm4 <wm4@nowhere> | 2015-07-14 23:09:44 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-07-14 23:11:06 +0200 |
commit | 739d345d6cf0ead2b25f03ca83123a081b506267 (patch) | |
tree | d87b7542a3910429c79f68eae81b68a543fef40f /TOOLS/old-makefile | |
parent | e1ab9b905fa50c92d0fcee3a1e37f55109f98775 (diff) |
build: don't make version.sh create version.h by default
You could actually run version.sh, and then the waf build system could
accidentally pick up the generated (and most likely stale) version.h.
Diffstat (limited to 'TOOLS/old-makefile')
-rw-r--r-- | TOOLS/old-makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TOOLS/old-makefile b/TOOLS/old-makefile index 77a03a58cd..9942fb84ab 100644 --- a/TOOLS/old-makefile +++ b/TOOLS/old-makefile @@ -381,8 +381,8 @@ config.mak: configure @echo "####### Please run ./configure again - it's changed! #######" @echo "############################################################" -version.h .version: version.sh - ./$< +old_build/version.h .version: version.sh + ./version.sh --versionh=old_build/version.h # Force version.sh to run to potentially regenerate version.h -include .version @@ -393,7 +393,7 @@ version.h .version: version.sh ###### dependency declarations / specific CFLAGS ###### -common/version.c: version.h +common/version.c: old_build/version.h DOCS/man/mpv.1: DOCS/man/af.rst \ DOCS/man/ao.rst \ @@ -464,7 +464,7 @@ clean: -$(RM) $(call ADD_ALL_DIRS,/*.o /*.a /*.ho /*~) -$(RM) mpv -$(RM) DOCS/man/*/mpv.1 - -$(RM) version.h + -$(RM) old_build/version.h version.h -$(RM) input/input_conf.h -$(RM) video/out/vdpau_template.c -$(RM) demux/ebml_types.h demux/ebml_defs.c |