-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Krepsky
committed
Jul 6, 2015
1 parent
cd9914d
commit d2fa2b5
Showing
2,464 changed files
with
256,077 additions
and
85,210 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,31 +1,39 @@ | ||
DRIVERLIB = source/driverlib | ||
SIMPLELINK = source/simplelink | ||
OSLIB = source/oslib | ||
MIDDLEWARE = source/middleware | ||
INTERFACES = source/interfaces | ||
NETAPP = source/netapps | ||
|
||
ifeq ("${target}", "NONOS") | ||
SDK_TARGETS = $(SIMPLELINK) $(MIDDLEWARE) $(INTERFACES) $(NETAPP) | ||
else | ||
ifeq ("${target}", "TINY") | ||
SDK_TARGETS = $(SIMPLELINK) | ||
else | ||
SDK_TARGETS = $(DRIVERLIB) $(SIMPLELINK) $(OSLIB) $(MIDDLEWARE) $(INTERFACES) $(NETAPP) | ||
endif | ||
endif | ||
|
||
.PHONY: all $(SDK_TARGETS) | ||
all: $(SDK_TARGETS) | ||
DRIVERLIB = src/driverlib | ||
SIMPLELINK = src/simplelink | ||
OSLIB = src/oslib | ||
MIDDLEWARE = src/middleware | ||
WEBCLIENT = src/netapps/http/client | ||
WEBSERVER = src/netapps/http/server | ||
JSON = src/netapps/json | ||
MQTT = src/netapps/mqtt | ||
SMTP = src/netapps/smtp/client | ||
TFTP = src/netapps/tftp/client | ||
XMPP = src/netapps/xmpp/client | ||
|
||
clean: | ||
rm -rf lib/* | ||
|
||
SDK_TARGETS = $(DRIVERLIB) $(SIMPLELINK) $(OSLIB) $(MIDDLEWARE) $(WEBCLIENT) $(WEBSERVER) $(JSON) $(MQTT) $(SMTP) $(TFTP) $(XMPP) | ||
SDK_TARGETS_NONOS = $(SIMPLELINK) $(MIDDLEWARE) | ||
SDK_TARGETS_TINY = $(SIMPLELINK) | ||
|
||
|
||
.PHONY: all | ||
all: os nonos tiny | ||
|
||
os: $(SDK_TARGETS) | ||
|
||
nonos: $(SDK_TARGETS_NONOS) | ||
|
||
tiny: $(SDK_TARGETS_TINY) | ||
|
||
.PHONY: $(SDK_TARGETS) | ||
$(SDK_TARGETS): | ||
@$(MAKE) -C $@; | ||
@$(MAKE) -C $@ | ||
|
||
$(SDK_TARGETS_NONOS): | ||
@$(MAKE) -C $@ target=NONOS; | ||
@$(MAKE) -C $@ target=NONOS | ||
|
||
$(SDK_TARGETS_TINY): | ||
@$(MAKE) -C $@ target=TINY; | ||
|
||
clean: | ||
rm -rf 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.