summaryrefslogtreecommitdiff
path: root/boards/ek-lm4f232
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-lm4f232
parenta6163888f3c56123b1db313743c6147ba498732c (diff)
parent6c8201ab902bf8a3a6b42dd7856569a607424a81 (diff)
Merge pull request #4 from tsagi/master
updated all makefiles to match the correct makedefs
Diffstat (limited to 'boards/ek-lm4f232')
-rw-r--r--boards/ek-lm4f232/bitband/Makefile4
-rw-r--r--boards/ek-lm4f232/blinky/Makefile4
-rw-r--r--boards/ek-lm4f232/boot_demo1/Makefile10
-rw-r--r--boards/ek-lm4f232/boot_demo2/Makefile10
-rw-r--r--boards/ek-lm4f232/boot_serial/Makefile12
-rw-r--r--boards/ek-lm4f232/boot_usb/Makefile12
-rw-r--r--boards/ek-lm4f232/hello/Makefile6
-rw-r--r--boards/ek-lm4f232/hibernate/Makefile6
-rw-r--r--boards/ek-lm4f232/interrupts/Makefile4
-rw-r--r--boards/ek-lm4f232/mpu_fault/Makefile4
-rw-r--r--boards/ek-lm4f232/qs-logger/Makefile12
-rw-r--r--boards/ek-lm4f232/sd_card/Makefile14
-rw-r--r--boards/ek-lm4f232/sine_demo/Makefile4
-rw-r--r--boards/ek-lm4f232/softuart_echo/Makefile6
-rw-r--r--boards/ek-lm4f232/timers/Makefile4
-rw-r--r--boards/ek-lm4f232/uart_echo/Makefile4
-rw-r--r--boards/ek-lm4f232/udma_demo/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_dev_bulk/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_dev_keyboard/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_dev_msc/Makefile12
-rw-r--r--boards/ek-lm4f232/usb_dev_serial/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_host_audio/Makefile14
-rw-r--r--boards/ek-lm4f232/usb_host_keyboard/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_host_mouse/Makefile6
-rw-r--r--boards/ek-lm4f232/usb_host_msc/Makefile12
-rw-r--r--boards/ek-lm4f232/usb_stick_demo/Makefile4
-rw-r--r--boards/ek-lm4f232/usb_stick_update/Makefile6
-rw-r--r--boards/ek-lm4f232/watchdog/Makefile4
28 files changed, 102 insertions, 102 deletions
diff --git a/boards/ek-lm4f232/bitband/Makefile b/boards/ek-lm4f232/bitband/Makefile
index d520026..4dc9295 100644
--- a/boards/ek-lm4f232/bitband/Makefile
+++ b/boards/ek-lm4f232/bitband/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 bitband example to be built.
diff --git a/boards/ek-lm4f232/blinky/Makefile b/boards/ek-lm4f232/blinky/Makefile
index d2e0838..faecba4 100644
--- a/boards/ek-lm4f232/blinky/Makefile
+++ b/boards/ek-lm4f232/blinky/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 blinky example to be built.
diff --git a/boards/ek-lm4f232/boot_demo1/Makefile b/boards/ek-lm4f232/boot_demo1/Makefile
index 52bab0b..c52f8c2 100644
--- a/boards/ek-lm4f232/boot_demo1/Makefile
+++ b/boards/ek-lm4f232/boot_demo1/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/bget
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/bget
+IPATH+=../../../third_party
#
# The default rule, which causes the boot_demo1 example to be built.
diff --git a/boards/ek-lm4f232/boot_demo2/Makefile b/boards/ek-lm4f232/boot_demo2/Makefile
index 3c86cfa..f5aad2b 100644
--- a/boards/ek-lm4f232/boot_demo2/Makefile
+++ b/boards/ek-lm4f232/boot_demo2/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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+=../../../../utils
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/bget
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/bget
+IPATH+=../../../third_party
#
# The default rule, which causes the boot_demo2 example to be built.
diff --git a/boards/ek-lm4f232/boot_serial/Makefile b/boards/ek-lm4f232/boot_serial/Makefile
index 926dc31..7b55108 100644
--- a/boards/ek-lm4f232/boot_serial/Makefile
+++ b/boards/ek-lm4f232/boot_serial/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,14 +40,14 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../boot_loader
+VPATH=../../../boot_loader
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
-IPATH+=../../../..
-IPATH+=../../../../boot_loader
+IPATH+=../../..
+IPATH+=../../../boot_loader
#
# The default rule, which causes the Serial Port Boot Loader to be built.
@@ -85,8 +85,8 @@ ${COMPILER}/boot_serial.axf: ${COMPILER}/bl_startup_${COMPILER}.o
${COMPILER}/boot_serial.axf: ${COMPILER}/bl_uart.o
${COMPILER}/boot_serial.axf: ${COMPILER}/bl_usb.o
${COMPILER}/boot_serial.axf: ${COMPILER}/bl_usbfuncs.o
-${COMPILER}/boot_serial.axf: ../../../../boot_loader/bl_link.ld
-SCATTERgcc_boot_serial=../../../../boot_loader/bl_link.ld
+${COMPILER}/boot_serial.axf: ../../../boot_loader/bl_link.ld
+SCATTERgcc_boot_serial=../../../boot_loader/bl_link.ld
ENTRY_boot_serial=ResetISR
CFLAGSgcc=-DTARGET_IS_TM4C123_RA1
diff --git a/boards/ek-lm4f232/boot_usb/Makefile b/boards/ek-lm4f232/boot_usb/Makefile
index f5491e9..0ecbcc5 100644
--- a/boards/ek-lm4f232/boot_usb/Makefile
+++ b/boards/ek-lm4f232/boot_usb/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,14 +40,14 @@ include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../boot_loader
+VPATH=../../../boot_loader
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
-IPATH+=../../../..
-IPATH+=../../../../boot_loader
+IPATH+=../../..
+IPATH+=../../../boot_loader
#
# The default rule, which causes the USB Boot Loader to be built.
@@ -85,8 +85,8 @@ ${COMPILER}/boot_usb.axf: ${COMPILER}/bl_startup_${COMPILER}.o
${COMPILER}/boot_usb.axf: ${COMPILER}/bl_uart.o
${COMPILER}/boot_usb.axf: ${COMPILER}/bl_usb.o
${COMPILER}/boot_usb.axf: ${COMPILER}/bl_usbfuncs.o
-${COMPILER}/boot_usb.axf: ../../../../boot_loader/bl_link.ld
-SCATTERgcc_boot_usb=../../../../boot_loader/bl_link.ld
+${COMPILER}/boot_usb.axf: ../../../boot_loader/bl_link.ld
+SCATTERgcc_boot_usb=../../../boot_loader/bl_link.ld
ENTRY_boot_usb=ResetISR
CFLAGSgcc=-DTARGET_IS_TM4C123_RA1
diff --git a/boards/ek-lm4f232/hello/Makefile b/boards/ek-lm4f232/hello/Makefile
index a8bd98b..9e71de4 100644
--- a/boards/ek-lm4f232/hello/Makefile
+++ b/boards/ek-lm4f232/hello/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/hibernate/Makefile b/boards/ek-lm4f232/hibernate/Makefile
index 50b7139..19f1657 100644
--- a/boards/ek-lm4f232/hibernate/Makefile
+++ b/boards/ek-lm4f232/hibernate/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 hibernation example to be built.
diff --git a/boards/ek-lm4f232/interrupts/Makefile b/boards/ek-lm4f232/interrupts/Makefile
index 309d7f6..505a3db 100644
--- a/boards/ek-lm4f232/interrupts/Makefile
+++ b/boards/ek-lm4f232/interrupts/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 interrupts example to be built.
diff --git a/boards/ek-lm4f232/mpu_fault/Makefile b/boards/ek-lm4f232/mpu_fault/Makefile
index e759592..e7a7666 100644
--- a/boards/ek-lm4f232/mpu_fault/Makefile
+++ b/boards/ek-lm4f232/mpu_fault/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 MPU example to be built.
diff --git a/boards/ek-lm4f232/qs-logger/Makefile b/boards/ek-lm4f232/qs-logger/Makefile
index 5d3f5d9..9b27387 100644
--- a/boards/ek-lm4f232/qs-logger/Makefile
+++ b/boards/ek-lm4f232/qs-logger/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 Data logger quickstart example to be built.
diff --git a/boards/ek-lm4f232/sd_card/Makefile b/boards/ek-lm4f232/sd_card/Makefile
index e178347..f292442 100644
--- a/boards/ek-lm4f232/sd_card/Makefile
+++ b/boards/ek-lm4f232/sd_card/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,17 +41,17 @@ include ${ROOT}/makedefs
# Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/fatfs/src/option
-VPATH+=../../../../third_party/fatfs/port
-VPATH+=../../../../third_party/fatfs/src
-VPATH+=../../../../utils
+VPATH+=../../../third_party/fatfs/src/option
+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 SD card example to be built.
diff --git a/boards/ek-lm4f232/sine_demo/Makefile b/boards/ek-lm4f232/sine_demo/Makefile
index 5a605e5..893385b 100644
--- a/boards/ek-lm4f232/sine_demo/Makefile
+++ b/boards/ek-lm4f232/sine_demo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 sine_demo example to be built.
diff --git a/boards/ek-lm4f232/softuart_echo/Makefile b/boards/ek-lm4f232/softuart_echo/Makefile
index b44c14c..01531da 100644
--- a/boards/ek-lm4f232/softuart_echo/Makefile
+++ b/boards/ek-lm4f232/softuart_echo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 softuart_echo example to be built.
diff --git a/boards/ek-lm4f232/timers/Makefile b/boards/ek-lm4f232/timers/Makefile
index 3d0d9b6..5a1ed5f 100644
--- a/boards/ek-lm4f232/timers/Makefile
+++ b/boards/ek-lm4f232/timers/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 timers example to be built.
diff --git a/boards/ek-lm4f232/uart_echo/Makefile b/boards/ek-lm4f232/uart_echo/Makefile
index ecaebab..555ff54 100644
--- a/boards/ek-lm4f232/uart_echo/Makefile
+++ b/boards/ek-lm4f232/uart_echo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 uart_echo example to be built.
diff --git a/boards/ek-lm4f232/udma_demo/Makefile b/boards/ek-lm4f232/udma_demo/Makefile
index 234fd7b..7a50d6a 100644
--- a/boards/ek-lm4f232/udma_demo/Makefile
+++ b/boards/ek-lm4f232/udma_demo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 uDMA example to be built.
diff --git a/boards/ek-lm4f232/usb_dev_bulk/Makefile b/boards/ek-lm4f232/usb_dev_bulk/Makefile
index 282bf5d..d7b7a3e 100644
--- a/boards/ek-lm4f232/usb_dev_bulk/Makefile
+++ b/boards/ek-lm4f232/usb_dev_bulk/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/usb_dev_keyboard/Makefile b/boards/ek-lm4f232/usb_dev_keyboard/Makefile
index 48ddedf..f02d08f 100644
--- a/boards/ek-lm4f232/usb_dev_keyboard/Makefile
+++ b/boards/ek-lm4f232/usb_dev_keyboard/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/usb_dev_msc/Makefile b/boards/ek-lm4f232/usb_dev_msc/Makefile
index c807c1e..327a1aa 100644
--- a/boards/ek-lm4f232/usb_dev_msc/Makefile
+++ b/boards/ek-lm4f232/usb_dev_msc/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 Mass Storage Class example to be built.
diff --git a/boards/ek-lm4f232/usb_dev_serial/Makefile b/boards/ek-lm4f232/usb_dev_serial/Makefile
index a66b530..60fe9f5 100644
--- a/boards/ek-lm4f232/usb_dev_serial/Makefile
+++ b/boards/ek-lm4f232/usb_dev_serial/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 serial example to be built.
diff --git a/boards/ek-lm4f232/usb_host_audio/Makefile b/boards/ek-lm4f232/usb_host_audio/Makefile
index 894d383..8fafcc7 100644
--- a/boards/ek-lm4f232/usb_host_audio/Makefile
+++ b/boards/ek-lm4f232/usb_host_audio/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,17 +41,17 @@ 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+=../../../../utils
+IPATH+=../../..
+IPATH+=../../../third_party
+IPATH+=../../../utils
#
# The default rule, which causes the USB host audio example to be built.
diff --git a/boards/ek-lm4f232/usb_host_keyboard/Makefile b/boards/ek-lm4f232/usb_host_keyboard/Makefile
index 7aa4ee0..523cf46 100644
--- a/boards/ek-lm4f232/usb_host_keyboard/Makefile
+++ b/boards/ek-lm4f232/usb_host_keyboard/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/usb_host_mouse/Makefile b/boards/ek-lm4f232/usb_host_mouse/Makefile
index f67d0a0..727ff40 100644
--- a/boards/ek-lm4f232/usb_host_mouse/Makefile
+++ b/boards/ek-lm4f232/usb_host_mouse/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/usb_host_msc/Makefile b/boards/ek-lm4f232/usb_host_msc/Makefile
index db3fb3b..c92ffd8 100644
--- a/boards/ek-lm4f232/usb_host_msc/Makefile
+++ b/boards/ek-lm4f232/usb_host_msc/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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-lm4f232/usb_stick_demo/Makefile b/boards/ek-lm4f232/usb_stick_demo/Makefile
index edba6bd..5c5278d 100644
--- a/boards/ek-lm4f232/usb_stick_demo/Makefile
+++ b/boards/ek-lm4f232/usb_stick_demo/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 usb_stick_demo example to be built.
diff --git a/boards/ek-lm4f232/usb_stick_update/Makefile b/boards/ek-lm4f232/usb_stick_update/Makefile
index 1ee3993..0e9d522 100644
--- a/boards/ek-lm4f232/usb_stick_update/Makefile
+++ b/boards/ek-lm4f232/usb_stick_update/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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 USB memory stick updater example to be built.
diff --git a/boards/ek-lm4f232/watchdog/Makefile b/boards/ek-lm4f232/watchdog/Makefile
index 6dab20a..35c5ecf 100644
--- a/boards/ek-lm4f232/watchdog/Makefile
+++ b/boards/ek-lm4f232/watchdog/Makefile
@@ -30,7 +30,7 @@ PART=TM4C123GH6PGE
#
# 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.