add 'make update' target
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4579 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
6e81dda174
commit
1cf902ea60
|
@ -127,6 +127,15 @@ src/include/switch_version.h: $(top_srcdir)/src/include/switch_version.h.in .ver
|
|||
fi ; \
|
||||
fi ;
|
||||
|
||||
update:
|
||||
@if test -d .svn ; then \
|
||||
test ! -f .version || rm -f .version ; \
|
||||
echo Updating... ; \
|
||||
svn update ; \
|
||||
else \
|
||||
echo "This source directory is not an svn working copy" ; \
|
||||
fi
|
||||
|
||||
.nodepends:
|
||||
touch .nodepends
|
||||
|
||||
|
|
|
@ -1103,6 +1103,15 @@ src/include/switch_version.h: $(top_srcdir)/src/include/switch_version.h.in .ver
|
|||
fi ; \
|
||||
fi ;
|
||||
|
||||
update:
|
||||
@if test -d .svn ; then \
|
||||
test ! -f .version || rm -f .version ; \
|
||||
echo Updating... ; \
|
||||
svn update ; \
|
||||
else \
|
||||
echo "This source directory is not an svn working copy" ; \
|
||||
fi
|
||||
|
||||
.nodepends:
|
||||
touch .nodepends
|
||||
|
||||
|
|
Loading…
Reference in New Issue