summaryrefslogtreecommitdiff
path: root/examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat
diff options
context:
space:
mode:
authorRaul Munoz <raul.munoz@toradex.com>2017-05-19 15:06:17 -0300
committerStefan Agner <stefan.agner@toradex.com>2017-05-22 17:09:55 -0700
commit90111ad6f27b8a5b2468bb68294ffe814ba3db80 (patch)
treeb8f4fea200d9f142d52d3a370c476de429ef607b /examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat
parentf4af2c93c0ad75f190a5c71ba6898c8122a204ea (diff)
examples: uart_interrupt: update CMake structure
Updating this CMake struct according hello_world example. Using this new struct we can build debug and release configuration at the same time and use Eclipse. Signed-off-by: Raul Munoz <raul.munoz@toradex.com> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat')
-rw-r--r--examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat b/examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat
index ffea088..fc53949 100644
--- a/examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat
+++ b/examples/imx7_colibri_m4/driver_examples/uart_imx/uart_interrupt/armgcc/clean.bat
@@ -1,3 +1,9 @@
-RD /s /Q Debug Release CMakeFiles
-DEL /s /Q /F Makefile cmake_install.cmake CMakeCache.txt
+cd debug
+rd /s /Q CMakeFiles/
+del /s /Q /F Makefile cmake_install.cmake CMakeCache.txt *.elf *.bin *.map *.hex
+cd ..
+cd release
+rd /s /Q CMakeFiles/
+del /s /Q /F Makefile cmake_install.cmake CMakeCache.txt *.elf *.bin *.map *.hex
+cd ..
pause