mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-06 07:00:59 +00:00
35 lines
662 B
Makefile
35 lines
662 B
Makefile
|
|
# Makefile to build example code for all platforms but
|
|
# - iOS (iOS requires double Xcode installation)
|
|
# 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 = \
|
|
pic32-harmony/app.X \
|
|
ios \
|
|
|
|
subdirs:
|
|
echo Building all platforms
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir; \
|
|
done
|
|
echo Building daemon
|
|
cd daemon ; ./bootstrap.sh ; make
|