From 6c8201ab902bf8a3a6b42dd7856569a607424a81 Mon Sep 17 00:00:00 2001 From: Tasos Sangiotis Date: Mon, 12 Jan 2015 13:30:30 +0200 Subject: updated all makefiles to match the correct makedefs --- boards/dk-tm4c129x/aes_cbc_decrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_cbc_encrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_ccm_decrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_ccm_encrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_cmac/Makefile | 6 ++--- boards/dk-tm4c129x/aes_ecb_decrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_ecb_encrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_gcm_decrypt/Makefile | 6 ++--- boards/dk-tm4c129x/aes_gcm_encrypt/Makefile | 6 ++--- boards/dk-tm4c129x/bitband/Makefile | 4 ++-- boards/dk-tm4c129x/ble_btool/Makefile | 6 ++--- boards/dk-tm4c129x/ble_central/Makefile | 6 ++--- boards/dk-tm4c129x/blinky/Makefile | 4 ++-- boards/dk-tm4c129x/boot_demo_emac_flash/Makefile | 18 +++++++------- boards/dk-tm4c129x/boot_demo_flash/Makefile | 18 +++++++------- boards/dk-tm4c129x/boot_demo_uart/Makefile | 4 ++-- boards/dk-tm4c129x/boot_demo_usb/Makefile | 6 ++--- boards/dk-tm4c129x/boot_emac_flash/Makefile | 12 +++++----- boards/dk-tm4c129x/calibrate/Makefile | 6 ++--- boards/dk-tm4c129x/crc32/Makefile | 6 ++--- boards/dk-tm4c129x/enet_io/Makefile | 20 ++++++++-------- boards/dk-tm4c129x/enet_lwip/Makefile | 22 ++++++++--------- boards/dk-tm4c129x/enet_uip/Makefile | 20 ++++++++-------- boards/dk-tm4c129x/fontview/Makefile | 16 ++++++------- boards/dk-tm4c129x/freertos_demo/Makefile | 30 ++++++++++++------------ boards/dk-tm4c129x/gpio_jtag/Makefile | 4 ++-- boards/dk-tm4c129x/grlib_demo/Makefile | 6 ++--- boards/dk-tm4c129x/grlib_driver_test/Makefile | 6 ++--- boards/dk-tm4c129x/hello/Makefile | 4 ++-- boards/dk-tm4c129x/hello_widget/Makefile | 6 ++--- boards/dk-tm4c129x/hibernate/Makefile | 6 ++--- boards/dk-tm4c129x/interrupts/Makefile | 4 ++-- boards/dk-tm4c129x/lang_demo/Makefile | 12 +++++----- boards/dk-tm4c129x/mpu_fault/Makefile | 4 ++-- boards/dk-tm4c129x/qs_weather/Makefile | 18 +++++++------- boards/dk-tm4c129x/scribble/Makefile | 6 ++--- boards/dk-tm4c129x/sd_card/Makefile | 14 +++++------ boards/dk-tm4c129x/sha1_hash/Makefile | 6 ++--- boards/dk-tm4c129x/sha1_hmac/Makefile | 6 ++--- boards/dk-tm4c129x/synth/Makefile | 6 ++--- boards/dk-tm4c129x/tamper/Makefile | 6 ++--- boards/dk-tm4c129x/tdes_cbc_decrypt/Makefile | 6 ++--- boards/dk-tm4c129x/tdes_cbc_encrypt/Makefile | 6 ++--- boards/dk-tm4c129x/timers/Makefile | 4 ++-- boards/dk-tm4c129x/uart_echo/Makefile | 4 ++-- boards/dk-tm4c129x/udma_demo/Makefile | 6 ++--- boards/dk-tm4c129x/usb_dev_bulk/Makefile | 6 ++--- boards/dk-tm4c129x/usb_dev_chid/Makefile | 6 ++--- boards/dk-tm4c129x/usb_dev_gamepad/Makefile | 6 ++--- boards/dk-tm4c129x/usb_dev_keyboard/Makefile | 6 ++--- boards/dk-tm4c129x/usb_dev_msc/Makefile | 10 ++++---- boards/dk-tm4c129x/usb_dev_serial/Makefile | 6 ++--- boards/dk-tm4c129x/usb_host_audio/Makefile | 14 +++++------ boards/dk-tm4c129x/usb_host_audio_in/Makefile | 6 ++--- boards/dk-tm4c129x/usb_host_hub/Makefile | 12 +++++----- boards/dk-tm4c129x/usb_host_keyboard/Makefile | 4 ++-- boards/dk-tm4c129x/usb_host_mouse/Makefile | 6 ++--- boards/dk-tm4c129x/usb_host_msc/Makefile | 12 +++++----- boards/dk-tm4c129x/usb_otg_mouse/Makefile | 6 ++--- boards/dk-tm4c129x/usb_stick_demo/Makefile | 6 ++--- boards/dk-tm4c129x/usb_stick_update/Makefile | 6 ++--- boards/dk-tm4c129x/watchdog/Makefile | 6 ++--- 62 files changed, 255 insertions(+), 255 deletions(-) (limited to 'boards/dk-tm4c129x') 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. -- cgit v1.3.1