-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Remove unneeded include in Makefile.app - Add necessary Makefile.setup for submodule checkout
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 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,3 +1 @@ | ||
include $(TOCK_USERLAND_BASE_DIR)/lwip/Makefile | ||
|
||
override CPPFLAGS += -I$(lwip_DIR)/lwip/src/include | ||
override CPPFLAGS += -I$(lwip_DIR)/lwip/src/include |
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,8 @@ | ||
TOCK_USERLAND_BASE_DIR ?= .. | ||
|
||
$(TOCK_USERLAND_BASE_DIR)/lwip/lwip/README: | ||
git submodule init $(TOCK_USERLAND_BASE_DIR)/lwip/lwip | ||
git submodule update $(TOCK_USERLAND_BASE_DIR)/lwip/lwip | ||
|
||
# Any sentinel file which lets us know if submodule is checked out | ||
all: | $(TOCK_USERLAND_BASE_DIR)/lwip/lwip/README |