]> git.saurik.com Git - apple/mdnsresponder.git/blob - Platforms/ADK/Thread/Makefile
mDNSResponder-1310.40.42.tar.gz
[apple/mdnsresponder.git] / Platforms / ADK / Thread / Makefile
1 all: ADK
2 (cd ADK/External/mdnsresponder; \
3 for file in `find . -name \*.\[ch\] -print`; do \
4 if ! cmp -s ../../../../../../$${file} $${file}; then \
5 cp ../../../../../../$${file} $${file}; \
6 echo cp ../../../../../../$${file} $${file}; \
7 fi; \
8 done)
9 (cd ADK; make TARGET=nRF52 PROTOCOLS=THREAD USE_STATIC_COMMISSIONING=1 USE_BLE=0 apps)
10
11 clean:
12 (cd ADK; make TARGET=nRF52 PROTOCOLS=THREAD USE_STATIC_COMMISSIONING=1 USE_BLE=0 clean)
13
14 ADK:
15 git clone git@github.pie.apple.com:Home-ADK/ADK.git
16
17 update:
18 (cd ADK; git pull)
19
20 install:
21 (cd ADK; USE_STATIC_COMMISSIONING=1 ./Tools/install.sh -d nRF52 -a Output/nRF52-arm-none-eabi-gcc/Debug/THREAD/Applications/Lightbulb.Oberon -k -t thread)