-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds missing makefiles in build directory.
- Loading branch information
1 parent
aff6067
commit de50344
Showing
6 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
targets/bare.armv7m/freertos_drivers/tivadriverlib/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,11 @@ | ||
OPENMRNPATH ?= $(realpath ../../../..) | ||
|
||
DEPS += TIVAWAREPATH | ||
include $(OPENMRNPATH)/etc/tivaware.mk | ||
VPATH := $(TIVAWAREPATH)/driverlib | ||
|
||
include $(OPENMRNPATH)/etc/lib.mk | ||
|
||
CFLAGS += -Dgcc | ||
|
||
emac.o : CFLAGS += -Wno-address-of-packed-member |
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,12 @@ | ||
OPENMRNPATH ?= $(realpath ../../../..) | ||
|
||
DEPS += TIVAWAREPATH | ||
include $(OPENMRNPATH)/etc/tivaware.mk | ||
VPATH := $(TIVAWAREPATH)/usblib | ||
|
||
include $(OPENMRNPATH)/etc/lib.mk | ||
CFLAGS += -Dcodered | ||
|
||
SUBDIRS = device host | ||
include $(OPENMRNPATH)/etc/recurse.mk | ||
|
9 changes: 9 additions & 0 deletions
9
targets/bare.armv7m/freertos_drivers/tivausblib/device/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,9 @@ | ||
OPENMRNPATH ?= $(realpath ../../../../..) | ||
|
||
DEPS += TIVAWAREPATH | ||
include $(OPENMRNPATH)/etc/tivaware.mk | ||
VPATH := $(TIVAWAREPATH)/usblib/device | ||
|
||
include $(OPENMRNPATH)/etc/lib.mk | ||
CFLAGS += -Dcodered | ||
|
9 changes: 9 additions & 0 deletions
9
targets/bare.armv7m/freertos_drivers/tivausblib/host/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,9 @@ | ||
OPENMRNPATH ?= $(realpath ../../../../..) | ||
|
||
DEPS += TIVAWAREPATH | ||
include $(OPENMRNPATH)/etc/tivaware.mk | ||
VPATH := $(TIVAWAREPATH)/usblib/host | ||
|
||
include $(OPENMRNPATH)/etc/lib.mk | ||
CFLAGS += -Dcodered | ||
|
2 changes: 2 additions & 0 deletions
2
targets/freertos.armv7m/freertos_drivers/spiffs_tm4c123/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,2 @@ | ||
OPENMRNPATH ?= $(realpath ../../../..) | ||
include $(OPENMRNPATH)/etc/lib.mk |
28 changes: 28 additions & 0 deletions
28
targets/freertos.armv7m/freertos_drivers/spiffs_tm4c123/sources
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,28 @@ | ||
DEPS += SPIFFSPATH | ||
DEPS += TICC3220SDKPATH | ||
|
||
VPATH := $(SPIFFSPATH)/src: \ | ||
$(OPENMRNPATH)/src/freertos_drivers/spiffs: \ | ||
$(OPENMRNPATH)/src/freertos_drivers/spiffs/cc32x0sf | ||
|
||
CSRCS += spiffs_cache.c \ | ||
spiffs_check.c \ | ||
spiffs_gc.c \ | ||
spiffs_hydrogen.c \ | ||
spiffs_nucleus.c \ | ||
spiffs_nucleus.c \ | ||
|
||
CXXSRCS += SPIFFS.cxx \ | ||
CC32x0SFSPIFFS.cxx | ||
|
||
|
||
INCLUDES += -I$(SPIFFSPATH)/src \ | ||
-I$(OPENMRNPATH)/src/freertos_drivers/spiffs \ | ||
-I$(OPENMRNPATH)/src/freertos_drivers/spiffs/cc32x0sf \ | ||
-I$(TICC3220SDKPATH)/source/ti/devices/cc32xx \ | ||
-I$(TICC3220SDKPATH)/source/ti/devices/cc32xx/driverlib \ | ||
|
||
CFLAGS += -DNO_TEST | ||
|
||
CXXFLAGS += | ||
|