btstack/port/Makefile

35 lines
662 B
Makefile
Raw Normal View History

2015-05-03 19:28:06 +00:00
2015-11-13 14:04:41 +00:00
# Makefile to build example code for all platforms but
# - iOS (iOS requires double Xcode installation)
2015-05-03 19:28:06 +00:00
# Intended for Continous Integration
#
# Requires:
# - gcc/clang, pkg-config, libusb
# - arm-none-eabi
# - mspgcc
# - Android Native Development Kit
# - Microchip XC32
SUBDIRS = \
arduino \
ez430-rf2560 \
libusb \
msp-exp430f5438-cc2564b \
msp430f5229lp-cc2564b \
mtk \
posix-stlc2500d \
posix-wl183x \
stm32-f103rb-nucleo \
EXCLUDED = \
2015-11-13 14:04:41 +00:00
pic32-harmony/app.X \
2015-05-03 19:28:06 +00:00
ios \
subdirs:
echo Building all platforms
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
2015-11-13 14:04:41 +00:00
echo Building daemon
cd daemon ; ./bootstrap.sh ; make