diff options
author | rfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-02 07:18:53 +0000 |
---|---|---|
committer | rfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-02 07:18:53 +0000 |
commit | 0535cfb080fcca0ac34648b2d1c684c56bdd98af (patch) | |
tree | e08fef5f492884a90826b6c1ebbab46e8f84d746 /Makefile | |
parent | 1b2bc3597df52469fbd71e3f563b1f063f11b42b (diff) | |
download | mpv-0535cfb080fcca0ac34648b2d1c684c56bdd98af.tar.bz2 mpv-0535cfb080fcca0ac34648b2d1c684c56bdd98af.tar.xz |
10l: version.h was not being built in some odd cases
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18015 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -440,7 +440,7 @@ codec-cfg.o: codecs.conf.h codecs2html: mp_msg.o $(CC) -DCODECS2HTML codec-cfg.c mp_msg.o -o $@ -$(PRG_CFG): version.h codec-cfg.c codec-cfg.h help_mp.h +$(PRG_CFG): codec-cfg.c codec-cfg.h help_mp.h $(HOST_CC) $(HOST_CFLAGS) -I. codec-cfg.c -o $(PRG_CFG) \ -DCODECS2HTML $(EXTRA_LIB) $(EXTRA_INC) @@ -567,6 +567,9 @@ endif #endif version.h: config.h config.mak Makefile +# explicit dependencies to force version.h to be built even if .depend is missing +mplayer.o mencoder.o vobsub.o: version.h + # # the following lines provide _partial_ dependency information # for the 'library' directories under main dir, in order to cause |