diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-01-12 13:48:15 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-01-12 13:48:15 +0200 |
| commit | c686407d271989d5c4bcc1b3c4f5bb6fcd1846a8 (patch) | |
| tree | 9361e7e73e6ab3cd49565c4b86d1371c75d7b659 | |
| parent | a6163888f3c56123b1db313743c6147ba498732c (diff) | |
| parent | 6c8201ab902bf8a3a6b42dd7856569a607424a81 (diff) | |
Merge pull request #4 from tsagi/master
updated all makefiles to match the correct makedefs
159 files changed, 623 insertions, 623 deletions
diff --git a/boards/dk-tm4c123g/bitband/Makefile b/boards/dk-tm4c123g/bitband/Makefile index 025411f..4ef866b 100644 --- a/boards/dk-tm4c123g/bitband/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/blinky/Makefile b/boards/dk-tm4c123g/blinky/Makefile index cfb3f0f..58963c6 100644 --- a/boards/dk-tm4c123g/blinky/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/boot_demo1/Makefile b/boards/dk-tm4c123g/boot_demo1/Makefile index 696c1c6..d5cf572 100644 --- a/boards/dk-tm4c123g/boot_demo1/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/boot_demo2/Makefile b/boards/dk-tm4c123g/boot_demo2/Makefile index 1db1015..12e5dc3 100644 --- a/boards/dk-tm4c123g/boot_demo2/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/boot_serial/Makefile b/boards/dk-tm4c123g/boot_serial/Makefile index 2fa8c6c..355f54b 100644 --- a/boards/dk-tm4c123g/boot_serial/Makefile +++ b/boards/dk-tm4c123g/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_RB1
diff --git a/boards/dk-tm4c123g/boot_usb/Makefile b/boards/dk-tm4c123g/boot_usb/Makefile index 46470f5..1d80b89 100644 --- a/boards/dk-tm4c123g/boot_usb/Makefile +++ b/boards/dk-tm4c123g/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_RB1
diff --git a/boards/dk-tm4c123g/can/Makefile b/boards/dk-tm4c123g/can/Makefile index e177556..1b0fc70 100644 --- a/boards/dk-tm4c123g/can/Makefile +++ b/boards/dk-tm4c123g/can/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 can example to be built.
diff --git a/boards/dk-tm4c123g/grlib_demo/Makefile b/boards/dk-tm4c123g/grlib_demo/Makefile index 4586288..40e3e43 100644 --- a/boards/dk-tm4c123g/grlib_demo/Makefile +++ b/boards/dk-tm4c123g/grlib_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 grlib_demo example to be built.
diff --git a/boards/dk-tm4c123g/hello/Makefile b/boards/dk-tm4c123g/hello/Makefile index de002bf..47528ee 100644 --- a/boards/dk-tm4c123g/hello/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/hibernate/Makefile b/boards/dk-tm4c123g/hibernate/Makefile index 3c40719..7c6c4a6 100644 --- a/boards/dk-tm4c123g/hibernate/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/interrupts/Makefile b/boards/dk-tm4c123g/interrupts/Makefile index 62cd88a..8b2b8f0 100644 --- a/boards/dk-tm4c123g/interrupts/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/mpu_fault/Makefile b/boards/dk-tm4c123g/mpu_fault/Makefile index dba04e8..69c79b1 100644 --- a/boards/dk-tm4c123g/mpu_fault/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/qs-logger/Makefile b/boards/dk-tm4c123g/qs-logger/Makefile index 6299d2e..21b5c0a 100644 --- a/boards/dk-tm4c123g/qs-logger/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/sd_card/Makefile b/boards/dk-tm4c123g/sd_card/Makefile index 0b019ac..2a9f178 100644 --- a/boards/dk-tm4c123g/sd_card/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/sine_demo/Makefile b/boards/dk-tm4c123g/sine_demo/Makefile index 9ba2106..b7af676 100644 --- a/boards/dk-tm4c123g/sine_demo/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/softuart_echo/Makefile b/boards/dk-tm4c123g/softuart_echo/Makefile index a8d40a6..80ce87a 100644 --- a/boards/dk-tm4c123g/softuart_echo/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/timers/Makefile b/boards/dk-tm4c123g/timers/Makefile index 8df9763..a9c7fc2 100644 --- a/boards/dk-tm4c123g/timers/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/uart_echo/Makefile b/boards/dk-tm4c123g/uart_echo/Makefile index 191215e..7bbd407 100644 --- a/boards/dk-tm4c123g/uart_echo/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/udma_demo/Makefile b/boards/dk-tm4c123g/udma_demo/Makefile index 57adb34..17137e1 100644 --- a/boards/dk-tm4c123g/udma_demo/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_dev_bulk/Makefile b/boards/dk-tm4c123g/usb_dev_bulk/Makefile index 42a0fd5..aece083 100644 --- a/boards/dk-tm4c123g/usb_dev_bulk/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_dev_keyboard/Makefile b/boards/dk-tm4c123g/usb_dev_keyboard/Makefile index 257beb2..9878585 100644 --- a/boards/dk-tm4c123g/usb_dev_keyboard/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_dev_msc/Makefile b/boards/dk-tm4c123g/usb_dev_msc/Makefile index f62750e..b4fa004 100644 --- a/boards/dk-tm4c123g/usb_dev_msc/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_dev_serial/Makefile b/boards/dk-tm4c123g/usb_dev_serial/Makefile index 04bbcfd..c584cad 100644 --- a/boards/dk-tm4c123g/usb_dev_serial/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_host_audio/Makefile b/boards/dk-tm4c123g/usb_host_audio/Makefile index f1f2ae6..96656b8 100644 --- a/boards/dk-tm4c123g/usb_host_audio/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_host_keyboard/Makefile b/boards/dk-tm4c123g/usb_host_keyboard/Makefile index e443e29..7388f5f 100644 --- a/boards/dk-tm4c123g/usb_host_keyboard/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_host_mouse/Makefile b/boards/dk-tm4c123g/usb_host_mouse/Makefile index 83d9641..f726a3a 100644 --- a/boards/dk-tm4c123g/usb_host_mouse/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_host_msc/Makefile b/boards/dk-tm4c123g/usb_host_msc/Makefile index 3c4ea43..73ec587 100644 --- a/boards/dk-tm4c123g/usb_host_msc/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_stick_demo/Makefile b/boards/dk-tm4c123g/usb_stick_demo/Makefile index d63e6f0..a527c98 100644 --- a/boards/dk-tm4c123g/usb_stick_demo/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/usb_stick_update/Makefile b/boards/dk-tm4c123g/usb_stick_update/Makefile index 08908cc..e37c40c 100644 --- a/boards/dk-tm4c123g/usb_stick_update/Makefile +++ b/boards/dk-tm4c123g/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/dk-tm4c123g/watchdog/Makefile b/boards/dk-tm4c123g/watchdog/Makefile index 81e6c0f..d47d80b 100644 --- a/boards/dk-tm4c123g/watchdog/Makefile +++ b/boards/dk-tm4c123g/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.
diff --git a/boards/dk-tm4c129x/aes_cbc_decrypt/Makefile b/boards/dk-tm4c129x/aes_cbc_decrypt/Makefile index 13557e9..d6da45d 100644 --- a/boards/dk-tm4c129x/aes_cbc_decrypt/Makefile +++ b/boards/dk-tm4c129x/aes_cbc_decrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 CBC Decryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_cbc_encrypt/Makefile b/boards/dk-tm4c129x/aes_cbc_encrypt/Makefile index ced6ac1..cb0e165 100644 --- a/boards/dk-tm4c129x/aes_cbc_encrypt/Makefile +++ b/boards/dk-tm4c129x/aes_cbc_encrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 CBC Encryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_ccm_decrypt/Makefile b/boards/dk-tm4c129x/aes_ccm_decrypt/Makefile index 2658b4e..eed8c9a 100644 --- a/boards/dk-tm4c129x/aes_ccm_decrypt/Makefile +++ b/boards/dk-tm4c129x/aes_ccm_decrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 CCM Decryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_ccm_encrypt/Makefile b/boards/dk-tm4c129x/aes_ccm_encrypt/Makefile index ce98f78..3cf11ca 100644 --- a/boards/dk-tm4c129x/aes_ccm_encrypt/Makefile +++ b/boards/dk-tm4c129x/aes_ccm_encrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 CCM Encryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_cmac/Makefile b/boards/dk-tm4c129x/aes_cmac/Makefile index 0590501..854cc01 100644 --- a/boards/dk-tm4c129x/aes_cmac/Makefile +++ b/boards/dk-tm4c129x/aes_cmac/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 CMAC Encryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_ecb_decrypt/Makefile b/boards/dk-tm4c129x/aes_ecb_decrypt/Makefile index a9794bb..62300d7 100644 --- a/boards/dk-tm4c129x/aes_ecb_decrypt/Makefile +++ b/boards/dk-tm4c129x/aes_ecb_decrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 ECB Decryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_ecb_encrypt/Makefile b/boards/dk-tm4c129x/aes_ecb_encrypt/Makefile index 61498ad..ca396ae 100644 --- a/boards/dk-tm4c129x/aes_ecb_encrypt/Makefile +++ b/boards/dk-tm4c129x/aes_ecb_encrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 ECB Encryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_gcm_decrypt/Makefile b/boards/dk-tm4c129x/aes_gcm_decrypt/Makefile index a41ddc1..a5128c6 100644 --- a/boards/dk-tm4c129x/aes_gcm_decrypt/Makefile +++ b/boards/dk-tm4c129x/aes_gcm_decrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 GCM Decryption Demo to be built.
diff --git a/boards/dk-tm4c129x/aes_gcm_encrypt/Makefile b/boards/dk-tm4c129x/aes_gcm_encrypt/Makefile index 9b0c1b1..ec488bd 100644 --- a/boards/dk-tm4c129x/aes_gcm_encrypt/Makefile +++ b/boards/dk-tm4c129x/aes_gcm_encrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 AES128 and AES256 GCM Encryption Demo to be built.
diff --git a/boards/dk-tm4c129x/bitband/Makefile b/boards/dk-tm4c129x/bitband/Makefile index 64a06f7..811ba3d 100644 --- a/boards/dk-tm4c129x/bitband/Makefile +++ b/boards/dk-tm4c129x/bitband/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/ble_btool/Makefile b/boards/dk-tm4c129x/ble_btool/Makefile index ac43935..94e33a0 100644 --- a/boards/dk-tm4c129x/ble_btool/Makefile +++ b/boards/dk-tm4c129x/ble_btool/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 ble btool example to be built.
diff --git a/boards/dk-tm4c129x/ble_central/Makefile b/boards/dk-tm4c129x/ble_central/Makefile index 600c267..306d72e 100644 --- a/boards/dk-tm4c129x/ble_central/Makefile +++ b/boards/dk-tm4c129x/ble_central/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 ble central example to be built.
diff --git a/boards/dk-tm4c129x/blinky/Makefile b/boards/dk-tm4c129x/blinky/Makefile index e672a7f..68e9d3d 100644 --- a/boards/dk-tm4c129x/blinky/Makefile +++ b/boards/dk-tm4c129x/blinky/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/boot_demo_emac_flash/Makefile b/boards/dk-tm4c129x/boot_demo_emac_flash/Makefile index 80412c9..fc525d7 100644 --- a/boards/dk-tm4c129x/boot_demo_emac_flash/Makefile +++ b/boards/dk-tm4c129x/boot_demo_emac_flash/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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+=../../../../utils
+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/bget
-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/bget
+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 Ethernet flashed-based boot_demo example to be built.
diff --git a/boards/dk-tm4c129x/boot_demo_flash/Makefile b/boards/dk-tm4c129x/boot_demo_flash/Makefile index 44bd941..3b10155 100644 --- a/boards/dk-tm4c129x/boot_demo_flash/Makefile +++ b/boards/dk-tm4c129x/boot_demo_flash/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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+=../../../../utils
+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/bget
-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/bget
+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 boot_demo_flash example to be built.
diff --git a/boards/dk-tm4c129x/boot_demo_uart/Makefile b/boards/dk-tm4c129x/boot_demo_uart/Makefile index b124dd5..4438984 100644 --- a/boards/dk-tm4c129x/boot_demo_uart/Makefile +++ b/boards/dk-tm4c129x/boot_demo_uart/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 boot_demo_uart example to be built.
diff --git a/boards/dk-tm4c129x/boot_demo_usb/Makefile b/boards/dk-tm4c129x/boot_demo_usb/Makefile index 4d18334..ca341b4 100644 --- a/boards/dk-tm4c129x/boot_demo_usb/Makefile +++ b/boards/dk-tm4c129x/boot_demo_usb/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 boot_demo_usb example to be built.
diff --git a/boards/dk-tm4c129x/boot_emac_flash/Makefile b/boards/dk-tm4c129x/boot_emac_flash/Makefile index 74ee14f..af6fd11 100644 --- a/boards/dk-tm4c129x/boot_emac_flash/Makefile +++ b/boards/dk-tm4c129x/boot_emac_flash/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 Ethernet flash-based Boot Loader to be built.
@@ -85,8 +85,8 @@ ${COMPILER}/boot_emac_flash.axf: ${COMPILER}/bl_startup_${COMPILER}.o ${COMPILER}/boot_emac_flash.axf: ${COMPILER}/bl_uart.o
${COMPILER}/boot_emac_flash.axf: ${COMPILER}/bl_usb.o
${COMPILER}/boot_emac_flash.axf: ${COMPILER}/bl_usbfuncs.o
-${COMPILER}/boot_emac_flash.axf: ../../../../boot_loader/bl_link.ld
-SCATTERgcc_boot_emac_flash=../../../../boot_loader/bl_link.ld
+${COMPILER}/boot_emac_flash.axf: ../../../boot_loader/bl_link.ld
+SCATTERgcc_boot_emac_flash=../../../boot_loader/bl_link.ld
ENTRY_boot_emac_flash=ResetISR
CFLAGSgcc=-DTARGET_IS_TM4C129_RA0
diff --git a/boards/dk-tm4c129x/calibrate/Makefile b/boards/dk-tm4c129x/calibrate/Makefile index 28d25a1..b17d4ff 100644 --- a/boards/dk-tm4c129x/calibrate/Makefile +++ b/boards/dk-tm4c129x/calibrate/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 calibrate example to be built.
diff --git a/boards/dk-tm4c129x/crc32/Makefile b/boards/dk-tm4c129x/crc32/Makefile index 37e6da9..1b366e5 100644 --- a/boards/dk-tm4c129x/crc32/Makefile +++ b/boards/dk-tm4c129x/crc32/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 CRC32 Demo to be built.
diff --git a/boards/dk-tm4c129x/enet_io/Makefile b/boards/dk-tm4c129x/enet_io/Makefile index f62a86b..b46644f 100644 --- a/boards/dk-tm4c129x/enet_io/Makefile +++ b/boards/dk-tm4c129x/enet_io/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/enet_lwip/Makefile b/boards/dk-tm4c129x/enet_lwip/Makefile index 2b633ba..76ffc03 100644 --- a/boards/dk-tm4c129x/enet_lwip/Makefile +++ b/boards/dk-tm4c129x/enet_lwip/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/enet_uip/Makefile b/boards/dk-tm4c129x/enet_uip/Makefile index f0c0525..928d559 100644 --- a/boards/dk-tm4c129x/enet_uip/Makefile +++ b/boards/dk-tm4c129x/enet_uip/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/fontview/Makefile b/boards/dk-tm4c129x/fontview/Makefile index b81e3a3..131f945 100644 --- a/boards/dk-tm4c129x/fontview/Makefile +++ b/boards/dk-tm4c129x/fontview/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,18 +41,18 @@ include ${ROOT}/makedefs # Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/fonts/ofl/fonts
-VPATH+=../../../../third_party/fatfs/port
-VPATH+=../../../../third_party/fatfs/src
-VPATH+=../../../../utils
+VPATH+=../../../third_party/fonts/ofl/fonts
+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/fonts/ofl
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/fonts/ofl
+IPATH+=../../../third_party
#
# The default rule, which causes the FontView example to be built.
diff --git a/boards/dk-tm4c129x/freertos_demo/Makefile b/boards/dk-tm4c129x/freertos_demo/Makefile index e8d76d3..d8ddbff 100644 --- a/boards/dk-tm4c129x/freertos_demo/Makefile +++ b/boards/dk-tm4c129x/freertos_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -40,27 +40,27 @@ include ${ROOT}/makedefs #
# Where to find source files that do not live in this directory.
#
-VPATH=../../../../third_party/FreeRTOS/Source/portable/GCC/ARM_CM4F
-VPATH+=../../../../third_party/FreeRTOS/Source/portable/MemMang/
-VPATH+=../../../../third_party/FreeRTOS/Source
+VPATH=../../../third_party/FreeRTOS/Source/portable/GCC/ARM_CM4F
+VPATH+=../../../third_party/FreeRTOS/Source/portable/MemMang/
+VPATH+=../../../third_party/FreeRTOS/Source
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/FreeRTOS/Source/portable/GCC/ARM_CM4F
-IPATH+=../../../../third_party/FreeRTOS
-IPATH+=../../../../third_party/lwip-1.4.1/apps
-IPATH+=../../../../third_party/FreeRTOS/Source/include
-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/FreeRTOS/Source/portable/GCC/ARM_CM4F
+IPATH+=../../../third_party/FreeRTOS
+IPATH+=../../../third_party/lwip-1.4.1/apps
+IPATH+=../../../third_party/FreeRTOS/Source/include
+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 FreeRTOS example to be built.
diff --git a/boards/dk-tm4c129x/gpio_jtag/Makefile b/boards/dk-tm4c129x/gpio_jtag/Makefile index 18828e3..d748b5d 100644 --- a/boards/dk-tm4c129x/gpio_jtag/Makefile +++ b/boards/dk-tm4c129x/gpio_jtag/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 gpio_jtag example to be built.
diff --git a/boards/dk-tm4c129x/grlib_demo/Makefile b/boards/dk-tm4c129x/grlib_demo/Makefile index df5423b..72194cd 100644 --- a/boards/dk-tm4c129x/grlib_demo/Makefile +++ b/boards/dk-tm4c129x/grlib_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 grlib_demo example to be built.
diff --git a/boards/dk-tm4c129x/grlib_driver_test/Makefile b/boards/dk-tm4c129x/grlib_driver_test/Makefile index 183be2a..3235d02 100644 --- a/boards/dk-tm4c129x/grlib_driver_test/Makefile +++ b/boards/dk-tm4c129x/grlib_driver_test/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 A command-line driven testcase to aid development of GrLib display drivers to be built.
diff --git a/boards/dk-tm4c129x/hello/Makefile b/boards/dk-tm4c129x/hello/Makefile index f01ef60..5f83116 100644 --- a/boards/dk-tm4c129x/hello/Makefile +++ b/boards/dk-tm4c129x/hello/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 hello example to be built.
diff --git a/boards/dk-tm4c129x/hello_widget/Makefile b/boards/dk-tm4c129x/hello_widget/Makefile index ad8b324..84c3654 100644 --- a/boards/dk-tm4c129x/hello_widget/Makefile +++ b/boards/dk-tm4c129x/hello_widget/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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+=../../..ils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
+IPATH+=../../..
#
# The default rule, which causes the hello_widget example to be built.
diff --git a/boards/dk-tm4c129x/hibernate/Makefile b/boards/dk-tm4c129x/hibernate/Makefile index 86e91fa..cffbc10 100644 --- a/boards/dk-tm4c129x/hibernate/Makefile +++ b/boards/dk-tm4c129x/hibernate/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/interrupts/Makefile b/boards/dk-tm4c129x/interrupts/Makefile index bf038e3..f66b10a 100644 --- a/boards/dk-tm4c129x/interrupts/Makefile +++ b/boards/dk-tm4c129x/interrupts/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/lang_demo/Makefile b/boards/dk-tm4c129x/lang_demo/Makefile index ff02631..d171c81 100644 --- a/boards/dk-tm4c129x/lang_demo/Makefile +++ b/boards/dk-tm4c129x/lang_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/fonts/lang_demo
-VPATH+=../../../../utils
+VPATH+=../../../third_party/fonts/lang_demo
+VPATH+=../../../utils
#
# Where to find header files that do not live in the source directory.
#
IPATH=..
-IPATH+=../../../..
-IPATH+=../../../../third_party/fonts/lang_demo
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/fonts/lang_demo
+IPATH+=../../../third_party
#
# The default rule, which causes the lang_demo example to be built.
diff --git a/boards/dk-tm4c129x/mpu_fault/Makefile b/boards/dk-tm4c129x/mpu_fault/Makefile index 9717edd..b60b236 100644 --- a/boards/dk-tm4c129x/mpu_fault/Makefile +++ b/boards/dk-tm4c129x/mpu_fault/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/qs_weather/Makefile b/boards/dk-tm4c129x/qs_weather/Makefile index 0261c2e..79414cd 100644 --- a/boards/dk-tm4c129x/qs_weather/Makefile +++ b/boards/dk-tm4c129x/qs_weather/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/scribble/Makefile b/boards/dk-tm4c129x/scribble/Makefile index 9aa1d3b..f9f379d 100644 --- a/boards/dk-tm4c129x/scribble/Makefile +++ b/boards/dk-tm4c129x/scribble/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 scribble example to be built.
diff --git a/boards/dk-tm4c129x/sd_card/Makefile b/boards/dk-tm4c129x/sd_card/Makefile index 2a4122e..370ebec 100644 --- a/boards/dk-tm4c129x/sd_card/Makefile +++ b/boards/dk-tm4c129x/sd_card/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/sha1_hash/Makefile b/boards/dk-tm4c129x/sha1_hash/Makefile index 6f151ac..e68aa67 100644 --- a/boards/dk-tm4c129x/sha1_hash/Makefile +++ b/boards/dk-tm4c129x/sha1_hash/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 SHA1 Hash Demo to be built.
diff --git a/boards/dk-tm4c129x/sha1_hmac/Makefile b/boards/dk-tm4c129x/sha1_hmac/Makefile index d33d663..4e9558b 100644 --- a/boards/dk-tm4c129x/sha1_hmac/Makefile +++ b/boards/dk-tm4c129x/sha1_hmac/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 SHA1 HMAC Demo to be built.
diff --git a/boards/dk-tm4c129x/synth/Makefile b/boards/dk-tm4c129x/synth/Makefile index 69e0aeb..ab96d52 100644 --- a/boards/dk-tm4c129x/synth/Makefile +++ b/boards/dk-tm4c129x/synth/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 synth example to be built.
diff --git a/boards/dk-tm4c129x/tamper/Makefile b/boards/dk-tm4c129x/tamper/Makefile index 7737e38..30a2c3d 100644 --- a/boards/dk-tm4c129x/tamper/Makefile +++ b/boards/dk-tm4c129x/tamper/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 tamper example to be built.
diff --git a/boards/dk-tm4c129x/tdes_cbc_decrypt/Makefile b/boards/dk-tm4c129x/tdes_cbc_decrypt/Makefile index a86262c..afa54f8 100644 --- a/boards/dk-tm4c129x/tdes_cbc_decrypt/Makefile +++ b/boards/dk-tm4c129x/tdes_cbc_decrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 Triple DES CBC Decryption Demo to be built.
diff --git a/boards/dk-tm4c129x/tdes_cbc_encrypt/Makefile b/boards/dk-tm4c129x/tdes_cbc_encrypt/Makefile index 7b07ffc..545081c 100644 --- a/boards/dk-tm4c129x/tdes_cbc_encrypt/Makefile +++ b/boards/dk-tm4c129x/tdes_cbc_encrypt/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 Triple DES CBC Ecryption Demo to be built.
diff --git a/boards/dk-tm4c129x/timers/Makefile b/boards/dk-tm4c129x/timers/Makefile index 5c06af4..c9ef7f9 100644 --- a/boards/dk-tm4c129x/timers/Makefile +++ b/boards/dk-tm4c129x/timers/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/uart_echo/Makefile b/boards/dk-tm4c129x/uart_echo/Makefile index 68229ef..8759258 100644 --- a/boards/dk-tm4c129x/uart_echo/Makefile +++ b/boards/dk-tm4c129x/uart_echo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/udma_demo/Makefile b/boards/dk-tm4c129x/udma_demo/Makefile index d5e1ab9..3d22076 100644 --- a/boards/dk-tm4c129x/udma_demo/Makefile +++ b/boards/dk-tm4c129x/udma_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_dev_bulk/Makefile b/boards/dk-tm4c129x/usb_dev_bulk/Makefile index 3fcb90d..176f403 100644 --- a/boards/dk-tm4c129x/usb_dev_bulk/Makefile +++ b/boards/dk-tm4c129x/usb_dev_bulk/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_dev_chid/Makefile b/boards/dk-tm4c129x/usb_dev_chid/Makefile index 35b1455..a479eaa 100644 --- a/boards/dk-tm4c129x/usb_dev_chid/Makefile +++ b/boards/dk-tm4c129x/usb_dev_chid/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 composite device keyboard mouse example to be built.
diff --git a/boards/dk-tm4c129x/usb_dev_gamepad/Makefile b/boards/dk-tm4c129x/usb_dev_gamepad/Makefile index 68e1edc..53a253a 100644 --- a/boards/dk-tm4c129x/usb_dev_gamepad/Makefile +++ b/boards/dk-tm4c129x/usb_dev_gamepad/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 gamepad example to be built.
diff --git a/boards/dk-tm4c129x/usb_dev_keyboard/Makefile b/boards/dk-tm4c129x/usb_dev_keyboard/Makefile index b64db29..21f123b 100644 --- a/boards/dk-tm4c129x/usb_dev_keyboard/Makefile +++ b/boards/dk-tm4c129x/usb_dev_keyboard/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_dev_msc/Makefile b/boards/dk-tm4c129x/usb_dev_msc/Makefile index a244274..ce33d03 100644 --- a/boards/dk-tm4c129x/usb_dev_msc/Makefile +++ b/boards/dk-tm4c129x/usb_dev_msc/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,15 +41,15 @@ include ${ROOT}/makedefs # Where to find source files that do not live in this directory.
#
VPATH=../drivers
-VPATH+=../../../../third_party/fatfs/port
-VPATH+=../../../../utils
+VPATH+=../../../third_party/fatfs/port
+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/dk-tm4c129x/usb_dev_serial/Makefile b/boards/dk-tm4c129x/usb_dev_serial/Makefile index 785ef74..b2de893 100644 --- a/boards/dk-tm4c129x/usb_dev_serial/Makefile +++ b/boards/dk-tm4c129x/usb_dev_serial/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_host_audio/Makefile b/boards/dk-tm4c129x/usb_host_audio/Makefile index fb9a35d..07b274d 100644 --- a/boards/dk-tm4c129x/usb_host_audio/Makefile +++ b/boards/dk-tm4c129x/usb_host_audio/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_host_audio_in/Makefile b/boards/dk-tm4c129x/usb_host_audio_in/Makefile index 09db7fa..37c6f1b 100644 --- a/boards/dk-tm4c129x/usb_host_audio_in/Makefile +++ b/boards/dk-tm4c129x/usb_host_audio_in/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 audio input example to be built.
diff --git a/boards/dk-tm4c129x/usb_host_hub/Makefile b/boards/dk-tm4c129x/usb_host_hub/Makefile index 64416dc..ed6da4a 100644 --- a/boards/dk-tm4c129x/usb_host_hub/Makefile +++ b/boards/dk-tm4c129x/usb_host_hub/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 Hub keyboard/msc example to be built.
diff --git a/boards/dk-tm4c129x/usb_host_keyboard/Makefile b/boards/dk-tm4c129x/usb_host_keyboard/Makefile index 2d4d4f4..3d0e92a 100644 --- a/boards/dk-tm4c129x/usb_host_keyboard/Makefile +++ b/boards/dk-tm4c129x/usb_host_keyboard/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 host keyboard example to be built.
diff --git a/boards/dk-tm4c129x/usb_host_mouse/Makefile b/boards/dk-tm4c129x/usb_host_mouse/Makefile index a3ce9d3..cee80a4 100644 --- a/boards/dk-tm4c129x/usb_host_mouse/Makefile +++ b/boards/dk-tm4c129x/usb_host_mouse/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_host_msc/Makefile b/boards/dk-tm4c129x/usb_host_msc/Makefile index 02c02dd..9067b97 100644 --- a/boards/dk-tm4c129x/usb_host_msc/Makefile +++ b/boards/dk-tm4c129x/usb_host_msc/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_otg_mouse/Makefile b/boards/dk-tm4c129x/usb_otg_mouse/Makefile index 438beff..ef7be58 100644 --- a/boards/dk-tm4c129x/usb_otg_mouse/Makefile +++ b/boards/dk-tm4c129x/usb_otg_mouse/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -43,14 +43,14 @@ include ${ROOT}/makedefs VPATH=.
VPATH+=
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 OTG Mouse to be built.
diff --git a/boards/dk-tm4c129x/usb_stick_demo/Makefile b/boards/dk-tm4c129x/usb_stick_demo/Makefile index 769c69e..e3031b8 100644 --- a/boards/dk-tm4c129x/usb_stick_demo/Makefile +++ b/boards/dk-tm4c129x/usb_stick_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/usb_stick_update/Makefile b/boards/dk-tm4c129x/usb_stick_update/Makefile index b1aed62..069ed86 100644 --- a/boards/dk-tm4c129x/usb_stick_update/Makefile +++ b/boards/dk-tm4c129x/usb_stick_update/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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/dk-tm4c129x/watchdog/Makefile b/boards/dk-tm4c129x/watchdog/Makefile index c4959a8..9fdd0ed 100644 --- a/boards/dk-tm4c129x/watchdog/Makefile +++ b/boards/dk-tm4c129x/watchdog/Makefile @@ -30,7 +30,7 @@ PART=TM4C129XNCZAD #
# 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 watchdog example to be built.
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.
diff --git a/boards/ek-tm4c123gxl/bitband/Makefile b/boards/ek-tm4c123gxl/bitband/Makefile index 77b33d7..c68e073 100644 --- a/boards/ek-tm4c123gxl/bitband/Makefile +++ b/boards/ek-tm4c123gxl/bitband/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/blinky/Makefile b/boards/ek-tm4c123gxl/blinky/Makefile index 3310806..55a81b0 100644 --- a/boards/ek-tm4c123gxl/blinky/Makefile +++ b/boards/ek-tm4c123gxl/blinky/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/freertos_demo/Makefile b/boards/ek-tm4c123gxl/freertos_demo/Makefile index 229f028..d1ea8fa 100644 --- a/boards/ek-tm4c123gxl/freertos_demo/Makefile +++ b/boards/ek-tm4c123gxl/freertos_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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/FreeRTOS/Source/portable/GCC/ARM_CM4F
-VPATH+=../../../../third_party/FreeRTOS/Source/portable/MemMang/
-VPATH+=../../../../third_party/FreeRTOS/Source
+VPATH=../../../third_party/FreeRTOS/Source/portable/GCC/ARM_CM4F
+VPATH+=../../../third_party/FreeRTOS/Source/portable/MemMang/
+VPATH+=../../../third_party/FreeRTOS/Source
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/FreeRTOS/Source/portable/GCC/ARM_CM4F
-IPATH+=../../../../third_party/FreeRTOS
-IPATH+=../../../../third_party/FreeRTOS/Source/include
-IPATH+=../../../../third_party
+IPATH+=../../..
+IPATH+=../../../third_party/FreeRTOS/Source/portable/GCC/ARM_CM4F
+IPATH+=../../../third_party/FreeRTOS
+IPATH+=../../../third_party/FreeRTOS/Source/include
+IPATH+=../../../third_party
#
# The default rule, which causes the FreeRTOS example to be built.
diff --git a/boards/ek-tm4c123gxl/gpio_jtag/Makefile b/boards/ek-tm4c123gxl/gpio_jtag/Makefile index 1c0d29e..4375b81 100644 --- a/boards/ek-tm4c123gxl/gpio_jtag/Makefile +++ b/boards/ek-tm4c123gxl/gpio_jtag/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/hello/Makefile b/boards/ek-tm4c123gxl/hello/Makefile index 865cd2e..21e95c9 100644 --- a/boards/ek-tm4c123gxl/hello/Makefile +++ b/boards/ek-tm4c123gxl/hello/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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 hello example to be built.
diff --git a/boards/ek-tm4c123gxl/interrupts/Makefile b/boards/ek-tm4c123gxl/interrupts/Makefile index 23f5ef6..70e916e 100644 --- a/boards/ek-tm4c123gxl/interrupts/Makefile +++ b/boards/ek-tm4c123gxl/interrupts/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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 interrupts example to be built.
diff --git a/boards/ek-tm4c123gxl/mpu_fault/Makefile b/boards/ek-tm4c123gxl/mpu_fault/Makefile index bf2ea94..483c5e2 100644 --- a/boards/ek-tm4c123gxl/mpu_fault/Makefile +++ b/boards/ek-tm4c123gxl/mpu_fault/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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=../../..
+IPATH+=../../..
#
# The default rule, which causes the MPU example to be built.
diff --git a/boards/ek-tm4c123gxl/project0/Makefile b/boards/ek-tm4c123gxl/project0/Makefile index 2a65343..f1ef725 100644 --- a/boards/ek-tm4c123gxl/project0/Makefile +++ b/boards/ek-tm4c123gxl/project0/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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 Project Zero Example to be built.
diff --git a/boards/ek-tm4c123gxl/qs-rgb/Makefile b/boards/ek-tm4c123gxl/qs-rgb/Makefile index 1b963f7..c59ede2 100644 --- a/boards/ek-tm4c123gxl/qs-rgb/Makefile +++ b/boards/ek-tm4c123gxl/qs-rgb/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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 Quickstart RGB to be built.
diff --git a/boards/ek-tm4c123gxl/timers/Makefile b/boards/ek-tm4c123gxl/timers/Makefile index c076d9f..9a57b1e 100644 --- a/boards/ek-tm4c123gxl/timers/Makefile +++ b/boards/ek-tm4c123gxl/timers/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/uart_echo/Makefile b/boards/ek-tm4c123gxl/uart_echo/Makefile index 7bcd0d4..b9c52f3 100644 --- a/boards/ek-tm4c123gxl/uart_echo/Makefile +++ b/boards/ek-tm4c123gxl/uart_echo/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/udma_demo/Makefile b/boards/ek-tm4c123gxl/udma_demo/Makefile index ba7ea5a..80c95dc 100644 --- a/boards/ek-tm4c123gxl/udma_demo/Makefile +++ b/boards/ek-tm4c123gxl/udma_demo/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-tm4c123gxl/usb_dev_bulk/Makefile b/boards/ek-tm4c123gxl/usb_dev_bulk/Makefile index 93eb252..a5e44ec 100644 --- a/boards/ek-tm4c123gxl/usb_dev_bulk/Makefile +++ b/boards/ek-tm4c123gxl/usb_dev_bulk/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# The base directory for TivaWare.
#
-ROOT=../../../..
+ROOT=../../..
#
# Include the common make definitions.
@@ -41,12 +41,12 @@ include ${ROOT}/makedefs # Where to find source files that do not live in this directory.
#
VPATH=
-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 device bulk example to be built.
diff --git a/boards/ek-tm4c123gxl/usb_dev_gamepad/Makefile b/boards/ek-tm4c123gxl/usb_dev_gamepad/Makefile index 000763b..bf221f8 100644 --- a/boards/ek-tm4c123gxl/usb_dev_gamepad/Makefile +++ b/boards/ek-tm4c123gxl/usb_dev_gamepad/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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 gamepad example to be built.
diff --git a/boards/ek-tm4c123gxl/usb_dev_serial/Makefile b/boards/ek-tm4c123gxl/usb_dev_serial/Makefile index dc53270..fff4ece 100644 --- a/boards/ek-tm4c123gxl/usb_dev_serial/Makefile +++ b/boards/ek-tm4c123gxl/usb_dev_serial/Makefile @@ -30,7 +30,7 @@ PART=TM4C123GH6PM #
# 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-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.
|
