forked from espressif/esp-joylink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
044816d
commit 15f3c05
Showing
93 changed files
with
793 additions
and
849 deletions.
There are no files selected for viewing
56 changes: 0 additions & 56 deletions
56
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/Makefile
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/agent/Makefile
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/auth/Makefile
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/example/Makefile
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/joylink/Makefile
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/json/Makefile
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_04_24/list/Makefile
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
36 changes: 36 additions & 0 deletions
36
platforms/joylink/adaptation/joylink_dev_sdk_2.0_2018_05_24/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
include ./Makefile.rule | ||
|
||
ifeq (${AGENT_GW_EN}, yes) | ||
DEPS= auth json list example joylink agent | ||
else | ||
DEPS= auth json list example joylink | ||
endif | ||
|
||
STATICLIBS = $(wildcard $(TARGET_LIB)/*.a) | ||
SDKLIBNAME = libjoylinksdk.a | ||
|
||
all: ${DEPS} sdk_lib jt | ||
|
||
clean: ${DEPS} | ||
|
||
distclean: ${DEPS} | ||
${RM} ${TARGET_LIB}/* | ||
|
||
${DEPS}: | ||
make -C $@ $(MAKECMDGOALS) | ||
|
||
jt: | ||
make jt -C joylink | ||
|
||
sdk_lib: | ||
@for name in $(STATICLIBS); \ | ||
do \ | ||
${AR} x "$$name"; \ | ||
if [ "$$name" != "$(TARGET_LIB)/libjoylinksdk.a" ]; then ${RM} "$$name" ; fi;\ | ||
done | ||
@${AR} -crs ${SDKLIBNAME} *.o | ||
@${RANLIB} ${SDKLIBNAME} | ||
@${RM} *.o | ||
@${MV} ${SDKLIBNAME} $(TARGET_LIB) | ||
|
||
.PHONY:all clean distclean ${DEPS} jt sdk_lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.