btstack/config-iphone.sh

17 lines
409 B
Bash
Raw Normal View History

2013-02-19 19:59:35 +00:00
#!/bin/sh
echo "Configure BTstack for use with iOS using the theos build system"
2013-09-11 18:15:19 +00:00
# get version from svn
cd src; ./get_version.sh; cd ..
2013-02-19 19:59:35 +00:00
# check if $THEOS is set
# remove autoconf created files
rm -f config.h Makefile src/Makefile example/Makefile
# use theos Makefiles
ln -s config-iphone.h config.h
ln -s Makefile.iphone Makefile
ln -s Makefile.iphone src/Makefile
ln -s Makefile.iphone example/Makefile