Skip to content

Commit

Permalink
Adds missing makefiles in build directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsracz committed May 6, 2022
1 parent aff6067 commit de50344
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 0 deletions.
11 changes: 11 additions & 0 deletions targets/bare.armv7m/freertos_drivers/tivadriverlib/Makefile
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
12 changes: 12 additions & 0 deletions targets/bare.armv7m/freertos_drivers/tivausblib/Makefile
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

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 targets/bare.armv7m/freertos_drivers/tivausblib/host/Makefile
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

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 targets/freertos.armv7m/freertos_drivers/spiffs_tm4c123/sources
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 +=

0 comments on commit de50344

Please sign in to comment.