mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-25 16:43:28 +00:00
Makefile for all platforms
This commit is contained in:
parent
40a904a488
commit
a55d0e5f2a
32
platforms/Makefile
Normal file
32
platforms/Makefile
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
# 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 \
|
||||||
|
daemon \
|
||||||
|
ez430-rf2560 \
|
||||||
|
libusb \
|
||||||
|
msp-exp430f5438-cc2564b \
|
||||||
|
msp430f5229lp-cc2564b \
|
||||||
|
mtk \
|
||||||
|
pic32-harmony/app.X \
|
||||||
|
posix-stlc2500d \
|
||||||
|
posix-wl183x \
|
||||||
|
stm32-f103rb-nucleo \
|
||||||
|
|
||||||
|
EXCLUDED = \
|
||||||
|
ios \
|
||||||
|
|
||||||
|
subdirs:
|
||||||
|
echo Building all platforms
|
||||||
|
for dir in $(SUBDIRS); do \
|
||||||
|
$(MAKE) -C $$dir; \
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user