mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 07:12:39 +00:00
CC version check done by Makefile to allow overriding CC from envvar
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3391 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
059a07af71
commit
f1b12eb265
4
Makefile
4
Makefile
@ -218,7 +218,7 @@ distclean:
|
||||
dep: depend
|
||||
|
||||
depend:
|
||||
./version.sh
|
||||
./version.sh `$(CC) --version`
|
||||
$(CC) -MM $(CFLAGS) mplayer.c mencoder.c $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend
|
||||
@for a in $(PARTS); do $(MAKE) -C $$a dep; done
|
||||
|
||||
@ -233,7 +233,7 @@ config.h: configure
|
||||
|
||||
# rebuild at every config.h/config.mak change:
|
||||
version.h: config.h config.mak Makefile
|
||||
./version.sh
|
||||
./version.sh `$(CC) --version`
|
||||
ifeq ($(wildcard .developer),)
|
||||
$(MAKE) distclean
|
||||
endif
|
||||
|
@ -5,7 +5,5 @@ if [ $? -ne 0 ]; then
|
||||
# probably no gnu date installed(?), use current date
|
||||
last_cvs_update=`date +%y%m%d-%H:%M`
|
||||
fi
|
||||
cc=`cat config.mak |grep CC | cut -d '=' -f 2`
|
||||
cc_version=`${cc} --version`
|
||||
|
||||
echo "#define VERSION \"CVS-${last_cvs_update}${cc}-${cc_version} \"" >version.h
|
||||
echo "#define VERSION \"CVS-${last_cvs_update}-$1 \"" >version.h
|
||||
|
Loading…
Reference in New Issue
Block a user