]> git.sur5r.net Git - freertos/commitdiff
Move .bat file up one directory.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 12 Jul 2009 16:19:30 +0000 (16:19 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 12 Jul 2009 16:19:30 +0000 (16:19 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@815 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/CORTEX_LPC1768_GCC_RedSuite/src/CreateProjectDirectoryStructure.bat [deleted file]

diff --git a/Demo/CORTEX_LPC1768_GCC_RedSuite/src/CreateProjectDirectoryStructure.bat b/Demo/CORTEX_LPC1768_GCC_RedSuite/src/CreateProjectDirectoryStructure.bat
deleted file mode 100644 (file)
index 348e1fd..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-REM Copies all the required files from their location within the standard\r
-REM FreeRTOS directory structure to under the Eclipse project directory.\r
-REM This permits the Eclipse project to be used in 'managed' mode and without\r
-REM having to setup any linked resources.\r
-\r
-REM Have the files already been copied?\r
-IF EXIST FreeRTOS Goto END\r
-\r
-       REM Create the required directory structure.\r
-       MD FreeRTOS\r
-       MD FreeRTOS\include     \r
-       MD FreeRTOS\portable\GCC\ARM_CM3\r
-       MD FreeRTOS\portable\MemMang    \r
-       MD "Common Demo Tasks"\r
-       MD "Common Demo Tasks\include"\r
-       \r
-       REM Copy the core kernel files.\r
-       copy ..\..\..\Source\tasks.c FreeRTOS\r
-       copy ..\..\..\Source\queue.c FreeRTOS\r
-       copy ..\..\..\Source\list.c FreeRTOS\r
-       \r
-       REM Copy the common header files\r
-\r
-       copy ..\..\..\Source\include\*.* FreeRTOS\include\r
-       \r
-       REM Copy the portable layer files\r
-       copy ..\..\..\Source\portable\GCC\ARM_CM3\*.* FreeRTOS\portable\GCC\ARM_CM3\r
-       \r
-       REM Copy the basic memory allocation files\r
-       copy ..\..\..\Source\portable\MemMang\*.* FreeRTOS\portable\MemMang\r
-\r
-       REM Copy the files that define the common demo tasks.\r
-       copy ..\..\Common\minimal\BlockQ.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\blocktim.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\flash.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\GenQTest.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\integer.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\PollQ.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\QPeek.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\recmutex.c "Common Demo Tasks"\r
-       copy ..\..\Common\minimal\semtest.c "Common Demo Tasks"\r
-       \r
-       REM Copy the common demo file headers.\r
-       copy ..\..\Common\include\*.* "Common Demo Tasks\include"\r
-       \r
-: END
\ No newline at end of file