summaryrefslogtreecommitdiff
path: root/boards/ek-tm4c1294xl
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-01-12 13:48:15 +0200
committerYuval Adam <yuval@y3xz.com>2015-01-12 13:48:15 +0200
commitc686407d271989d5c4bcc1b3c4f5bb6fcd1846a8 (patch)
tree9361e7e73e6ab3cd49565c4b86d1371c75d7b659 /boards/ek-tm4c1294xl
parenta6163888f3c56123b1db313743c6147ba498732c (diff)
parent6c8201ab902bf8a3a6b42dd7856569a607424a81 (diff)
Merge pull request #4 from tsagi/master
updated all makefiles to match the correct makedefs
Diffstat (limited to 'boards/ek-tm4c1294xl')
-rw-r--r--boards/ek-tm4c1294xl/bitband/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/enet_io/Makefile20
-rw-r--r--boards/ek-tm4c1294xl/enet_lwip/Makefile22
-rw-r--r--boards/ek-tm4c1294xl/enet_uip/Makefile20
-rw-r--r--boards/ek-tm4c1294xl/enet_weather/Makefile18
-rw-r--r--boards/ek-tm4c1294xl/gpio_jtag/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/hello/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/hibernate/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/interrupts/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/mpu_fault/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/qs_iot/Makefile20
-rw-r--r--boards/ek-tm4c1294xl/sleep_modes/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/timers/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/uart_echo/Makefile4
-rw-r--r--boards/ek-tm4c1294xl/udma_demo/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_dev_bulk/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_dev_cserial/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_dev_keyboard/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_host_keyboard/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_host_mouse/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_host_msc/Makefile12
-rw-r--r--boards/ek-tm4c1294xl/usb_stick_demo/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/usb_stick_update/Makefile6
-rw-r--r--boards/ek-tm4c1294xl/watchdog/Makefile4
24 files changed, 108 insertions, 108 deletions
diff --git a/boards/ek-tm4c1294xl/bitband/Makefile b/boards/ek-tm4c1294xl/bitband/Makefile
index 582e968..cbbcacd 100644
--- a/boards/ek-tm4c1294xl/bitband/Makefile
+++ b/boards/ek-tm4c1294xl/bitband/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,13 +40,13 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../utils
+VPATH=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the bitband example to be built.
diff --git a/boards/ek-tm4c1294xl/enet_io/Makefile b/boards/ek-tm4c1294xl/enet_io/Makefile
index 155371c..51f7ea0 100644
--- a/boards/ek-tm4c1294xl/enet_io/Makefile
+++ b/boards/ek-tm4c1294xl/enet_io/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,22 +40,22 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../third_party/lwip-1.4.1/apps
+VPATH=../../../third_party/lwip-1.4.1/apps
VPATH+=../drivers
-VPATH+=../../../../third_party/lwip-1.4.1/apps/httpserver_raw
-VPATH+=../../../../utils
+VPATH+=../../../third_party/lwip-1.4.1/apps/httpserver_raw
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/lwip-1.4.1/apps
-IPATH+=../../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include/ipv4
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/lwip-1.4.1/apps
+IPATH+=../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include/ipv4
+IPATH+=../../../third_party
#
# The default rule, which causes the Sample Ethernet I/O Control Application using lwIP 1.4.1 to be built.
diff --git a/boards/ek-tm4c1294xl/enet_lwip/Makefile b/boards/ek-tm4c1294xl/enet_lwip/Makefile
index f188a10..c7ee866 100644
--- a/boards/ek-tm4c1294xl/enet_lwip/Makefile
+++ b/boards/ek-tm4c1294xl/enet_lwip/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,22 +41,22 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/lwip-1.4.1/apps/httpserver_raw
-VPATH+=../../../../third_party/fatfs/port
-VPATH+=../../../../third_party/fatfs/src
-VPATH+=../../../../utils
+VPATH+=../../../third_party/lwip-1.4.1/apps/httpserver_raw
+VPATH+=../../../third_party/fatfs/port
+VPATH+=../../../third_party/fatfs/src
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/lwip-1.4.1/apps
-IPATH+=../../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include/ipv4
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/lwip-1.4.1/apps
+IPATH+=../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include/ipv4
+IPATH+=../../../third_party
#
# The default rule, which causes the web server using lwIP to be built.
diff --git a/boards/ek-tm4c1294xl/enet_uip/Makefile b/boards/ek-tm4c1294xl/enet_uip/Makefile
index e155189..0d358c4 100644
--- a/boards/ek-tm4c1294xl/enet_uip/Makefile
+++ b/boards/ek-tm4c1294xl/enet_uip/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,22 +41,22 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=.
-VPATH+=../../../../third_party/uip-1.0/apps/dhcpc
+VPATH+=../../../third_party/uip-1.0/apps/dhcpc
VPATH+=../drivers
-VPATH+=../../../../third_party/uip-1.0/apps/httpd
-VPATH+=../../../../third_party/uip-1.0/uip
-VPATH+=../../../../utils
+VPATH+=../../../third_party/uip-1.0/apps/httpd
+VPATH+=../../../third_party/uip-1.0/uip
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/uip-1.0/apps
-IPATH+=../../../../third_party/uip-1.0/uip
-IPATH+=../../../../third_party/uip-1.0
-IPATH+=../../../../utils
+IPATH+=../../..
+IPATH+=../../../third_party/uip-1.0/apps
+IPATH+=../../../third_party/uip-1.0/uip
+IPATH+=../../../third_party/uip-1.0
+IPATH+=../../../utils
#
# The default rule, which causes the Ethernet with uIP to be built.
diff --git a/boards/ek-tm4c1294xl/enet_weather/Makefile b/boards/ek-tm4c1294xl/enet_weather/Makefile
index 9366221..b9fed58 100644
--- a/boards/ek-tm4c1294xl/enet_weather/Makefile
+++ b/boards/ek-tm4c1294xl/enet_weather/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,20 +41,20 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/lwip-1.4.1/apps/httpserver_raw
-VPATH+=../../../../utils
+VPATH+=../../../third_party/lwip-1.4.1/apps/httpserver_raw
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/lwip-1.4.1/apps
-IPATH+=../../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include/ipv4
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/lwip-1.4.1/apps
+IPATH+=../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include/ipv4
+IPATH+=../../../third_party
#
# The default rule, which causes the Sample Ethernet Weather Application using lwIP 1.4.1 to be built.
diff --git a/boards/ek-tm4c1294xl/gpio_jtag/Makefile b/boards/ek-tm4c1294xl/gpio_jtag/Makefile
index d5b754e..262948d 100644
--- a/boards/ek-tm4c1294xl/gpio_jtag/Makefile
+++ b/boards/ek-tm4c1294xl/gpio_jtag/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the gpio_jtag example to be built.
diff --git a/boards/ek-tm4c1294xl/hello/Makefile b/boards/ek-tm4c1294xl/hello/Makefile
index 1850dc5..853276c 100644
--- a/boards/ek-tm4c1294xl/hello/Makefile
+++ b/boards/ek-tm4c1294xl/hello/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the hello example to be built.
diff --git a/boards/ek-tm4c1294xl/hibernate/Makefile b/boards/ek-tm4c1294xl/hibernate/Makefile
index 8fa3991..c2fe624 100644
--- a/boards/ek-tm4c1294xl/hibernate/Makefile
+++ b/boards/ek-tm4c1294xl/hibernate/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,14 +41,14 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the Hibernate Example to be built.
diff --git a/boards/ek-tm4c1294xl/interrupts/Makefile b/boards/ek-tm4c1294xl/interrupts/Makefile
index b29ffd9..8ff3813 100644
--- a/boards/ek-tm4c1294xl/interrupts/Makefile
+++ b/boards/ek-tm4c1294xl/interrupts/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,14 +41,14 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the interrupts example to be built.
diff --git a/boards/ek-tm4c1294xl/mpu_fault/Makefile b/boards/ek-tm4c1294xl/mpu_fault/Makefile
index 05e8b69..a8728f0 100644
--- a/boards/ek-tm4c1294xl/mpu_fault/Makefile
+++ b/boards/ek-tm4c1294xl/mpu_fault/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the MPU example to be built.
diff --git a/boards/ek-tm4c1294xl/qs_iot/Makefile b/boards/ek-tm4c1294xl/qs_iot/Makefile
index 2a1b155..5233094 100644
--- a/boards/ek-tm4c1294xl/qs_iot/Makefile
+++ b/boards/ek-tm4c1294xl/qs_iot/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,21 +41,21 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/exosite
-VPATH+=../../../../utils
+VPATH+=../../../third_party/exosite
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/lwip-1.4.1/apps
-IPATH+=../../../../third_party/exosite
-IPATH+=../../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include
-IPATH+=../../../../third_party/lwip-1.4.1/src/include/ipv4
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/lwip-1.4.1/apps
+IPATH+=../../../third_party/exosite
+IPATH+=../../../third_party/lwip-1.4.1/ports/tiva-tm4c129/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include
+IPATH+=../../../third_party/lwip-1.4.1/src/include/ipv4
+IPATH+=../../../third_party
#
# The default rule, which causes the Quickstart application to talk to a cloud server. to be built.
diff --git a/boards/ek-tm4c1294xl/sleep_modes/Makefile b/boards/ek-tm4c1294xl/sleep_modes/Makefile
index ab57bb9..1535c1b 100644
--- a/boards/ek-tm4c1294xl/sleep_modes/Makefile
+++ b/boards/ek-tm4c1294xl/sleep_modes/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the Sleep Modes example to be built.
diff --git a/boards/ek-tm4c1294xl/timers/Makefile b/boards/ek-tm4c1294xl/timers/Makefile
index fb52590..eea6cd7 100644
--- a/boards/ek-tm4c1294xl/timers/Makefile
+++ b/boards/ek-tm4c1294xl/timers/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,12 +40,12 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../utils
+VPATH=../../../utils
#
# Where to find header files that do not live in the source directory.
#
-IPATH=../../../..
+IPATH=../../..
#
# The default rule, which causes the timers example to be built.
diff --git a/boards/ek-tm4c1294xl/uart_echo/Makefile b/boards/ek-tm4c1294xl/uart_echo/Makefile
index 621b7cf..21b4f09 100644
--- a/boards/ek-tm4c1294xl/uart_echo/Makefile
+++ b/boards/ek-tm4c1294xl/uart_echo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,7 +40,7 @@ include ${ROOT}/makedefs
#
# Where to find header files that do not live in the source directory.
#
-IPATH=../../../..
+IPATH=../../..
#
# The default rule, which causes the uart_echo example to be built.
diff --git a/boards/ek-tm4c1294xl/udma_demo/Makefile b/boards/ek-tm4c1294xl/udma_demo/Makefile
index ff22463..e728fd9 100644
--- a/boards/ek-tm4c1294xl/udma_demo/Makefile
+++ b/boards/ek-tm4c1294xl/udma_demo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,12 +40,12 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../utils
+VPATH=../../../utils
#
# Where to find header files that do not live in the source directory.
#
-IPATH=../../../..
+IPATH=../../..
#
# The default rule, which causes the uDMA example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_dev_bulk/Makefile b/boards/ek-tm4c1294xl/usb_dev_bulk/Makefile
index a6eab04..4eca9bc 100644
--- a/boards/ek-tm4c1294xl/usb_dev_bulk/Makefile
+++ b/boards/ek-tm4c1294xl/usb_dev_bulk/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB device bulk example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_dev_cserial/Makefile b/boards/ek-tm4c1294xl/usb_dev_cserial/Makefile
index cd65150..6fd6b72 100644
--- a/boards/ek-tm4c1294xl/usb_dev_cserial/Makefile
+++ b/boards/ek-tm4c1294xl/usb_dev_cserial/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB device composite serial example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_dev_keyboard/Makefile b/boards/ek-tm4c1294xl/usb_dev_keyboard/Makefile
index ce3991a..198d6ca 100644
--- a/boards/ek-tm4c1294xl/usb_dev_keyboard/Makefile
+++ b/boards/ek-tm4c1294xl/usb_dev_keyboard/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB device keyboard example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_host_keyboard/Makefile b/boards/ek-tm4c1294xl/usb_host_keyboard/Makefile
index 8ef51c5..cf9e7f8 100644
--- a/boards/ek-tm4c1294xl/usb_host_keyboard/Makefile
+++ b/boards/ek-tm4c1294xl/usb_host_keyboard/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB host keyboard example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_host_mouse/Makefile b/boards/ek-tm4c1294xl/usb_host_mouse/Makefile
index 0fb0d16..7f261dc 100644
--- a/boards/ek-tm4c1294xl/usb_host_mouse/Makefile
+++ b/boards/ek-tm4c1294xl/usb_host_mouse/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB host mouse example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_host_msc/Makefile b/boards/ek-tm4c1294xl/usb_host_msc/Makefile
index 45006c1..c1945c2 100644
--- a/boards/ek-tm4c1294xl/usb_host_msc/Makefile
+++ b/boards/ek-tm4c1294xl/usb_host_msc/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,16 +41,16 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/fatfs/port
-VPATH+=../../../../third_party/fatfs/src
-VPATH+=../../../../utils
+VPATH+=../../../third_party/fatfs/port
+VPATH+=../../../third_party/fatfs/src
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party
#
# The default rule, which causes the USB host mass storage example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_stick_demo/Makefile b/boards/ek-tm4c1294xl/usb_stick_demo/Makefile
index 800a407..365cc78 100644
--- a/boards/ek-tm4c1294xl/usb_stick_demo/Makefile
+++ b/boards/ek-tm4c1294xl/usb_stick_demo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,13 +41,13 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the usb_stick_demo example to be built.
diff --git a/boards/ek-tm4c1294xl/usb_stick_update/Makefile b/boards/ek-tm4c1294xl/usb_stick_update/Makefile
index 804bfcb..1870b3f 100644
--- a/boards/ek-tm4c1294xl/usb_stick_update/Makefile
+++ b/boards/ek-tm4c1294xl/usb_stick_update/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,13 +40,13 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../utils
+VPATH=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the USB memory stick updater example to be built.
diff --git a/boards/ek-tm4c1294xl/watchdog/Makefile b/boards/ek-tm4c1294xl/watchdog/Makefile
index 1aa1111..722428a 100644
--- a/boards/ek-tm4c1294xl/watchdog/Makefile
+++ b/boards/ek-tm4c1294xl/watchdog/Makefile
@@ -30,7 +30,7 @@ PART=TM4C1294NCPDT
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -46,7 +46,7 @@ VPATH=../drivers
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the watchdog example to be built.