Browse Source

Merge pull request #22 from csindle/master

Ensure that existing bcg729 repositories are also upgraded.
pull/24/head
Matteo 8 years ago
committed by GitHub
parent
commit
c504eea91f
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      Makefile

+ 2
- 1
Makefile View File

@ -27,8 +27,9 @@ mod_bcg729.o: bcg729 mod_bcg729.c
clone_bcg729:
if [ ! -d bcg729 ]; then \
git clone git://git.linphone.org/bcg729.git; pushd bcg729 ; git checkout 1.0.3; popd; \
git clone git://git.linphone.org/bcg729.git; \
fi
pushd bcg729; git fetch; git checkout 1.0.3; popd;
bcg729: clone_bcg729
cd bcg729 && sh autogen.sh && CFLAGS=-fPIC ./configure && make && cd ..


Loading…
Cancel
Save