-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MSDK-688] AI85: Add project.mk for new projects
- Add project.mk for UNet-highres-demo & digit-detection-demo - Restructure TFT sub-folders for new auto-generated Makefile, mainly moving unused fonts and img C files for "fthr".
- Loading branch information
1 parent
ecb6b27
commit d024dc7
Showing
14 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,18 @@ | ||
# This file can be used for project configuration. | ||
# It's a sibling to the core "Makefile", which offers | ||
# various configuration variables that you can set here | ||
# if the default project configuration isn't suitable. | ||
|
||
# See the comments in the "Makefile" for a detailed | ||
# description of the default behavior and the full list of | ||
# available config variables. | ||
|
||
ifeq "$(BOARD)" "EvKit_V1" | ||
VPATH += TFT/evkit | ||
endif | ||
ifeq "$(BOARD)" "FTHR_RevA" | ||
VPATH += TFT/fthr | ||
endif | ||
|
||
IPATH += TFT/evkit | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,18 @@ | ||
# This file can be used for project configuration. | ||
# It's a sibling to the core "Makefile", which offers | ||
# various configuration variables that you can set here | ||
# if the default project configuration isn't suitable. | ||
|
||
# See the comments in the "Makefile" for a detailed | ||
# description of the default behavior and the full list of | ||
# available config variables. | ||
|
||
ifeq "$(BOARD)" "EvKit_V1" | ||
VPATH += TFT/evkit/resources | ||
endif | ||
ifeq "$(BOARD)" "FTHR_RevA" | ||
VPATH += TFT/fthr | ||
endif | ||
|
||
IPATH += TFT/evkit/resources | ||
|