]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M4F_Infineon_XMC4500_Tasking/CreateProjectDirectoryStructure.bat
65b7e627ae822d4a66d7522256dde218ec924b33
[freertos] / FreeRTOS / Demo / CORTEX_M4F_Infineon_XMC4500_Tasking / CreateProjectDirectoryStructure.bat
1 REM This file should be executed from the command line prior to the first\r
2 REM build.  It will be necessary to refresh the Eclipse project once the\r
3 REM .bat file has been executed (normally just press F5 to refresh).\r
4 \r
5 REM Copies all the required files from their location within the standard\r
6 REM FreeRTOS directory structure to under the Eclipse project directory.\r
7 REM This permits the Eclipse project to be used in 'managed' mode and without\r
8 REM having to setup any linked resources.\r
9 \r
10 REM Standard paths\r
11 SET FREERTOS_SOURCE=..\..\Source\r
12 SET COMMON_SOURCE=..\Common\minimal\r
13 SET COMMON_INCLUDE=..\Common\include\r
14 \r
15 REM Have the files already been copied?\r
16 IF EXIST FreeRTOS_Source Goto END\r
17 \r
18     REM Create the required directory structure.\r
19     MD FreeRTOS_Source\r
20     MD FreeRTOS_Source\include    \r
21     MD FreeRTOS_Source\portable\\r
22         MD FreeRTOS_Source\portable\Tasking\r
23     MD FreeRTOS_Source\portable\Tasking\ARM_CM4F\r
24     MD FreeRTOS_Source\portable\MemMang    \r
25     MD Common_Demo_Source\r
26     MD Common_Demo_Source\include\r
27     \r
28     REM Copy the core kernel files into the SDK projects directory\r
29     copy %FREERTOS_SOURCE%\tasks.c FreeRTOS_Source\r
30     copy %FREERTOS_SOURCE%\queue.c FreeRTOS_Source\r
31     copy %FREERTOS_SOURCE%\list.c FreeRTOS_Source\r
32     copy %FREERTOS_SOURCE%\timers.c FreeRTOS_Source\r
33 \r
34     REM Copy the common header files into the SDK projects directory\r
35     copy %FREERTOS_SOURCE%\include\*.* FreeRTOS_Source\include\r
36     \r
37     REM Copy the portable layer files into the projects directory\r
38     copy %FREERTOS_SOURCE%\portable\Tasking\ARM_CM4F\*.* FreeRTOS_Source\portable\Tasking\ARM_CM4F\r
39     \r
40     REM Copy the basic memory allocation files into the SDK projects directory\r
41     copy %FREERTOS_SOURCE%\portable\MemMang\heap_2.c FreeRTOS_Source\portable\MemMang\r
42 \r
43     REM Copy the files that define the common demo tasks.\r
44     copy %COMMON_SOURCE%\dynamic.c         Common_Demo_Source\r
45     copy %COMMON_SOURCE%\BlockQ.c          Common_Demo_Source\r
46     copy %COMMON_SOURCE%\death.c           Common_Demo_Source\r
47     copy %COMMON_SOURCE%\blocktim.c        Common_Demo_Source\r
48     copy %COMMON_SOURCE%\semtest.c         Common_Demo_Source\r
49     copy %COMMON_SOURCE%\PollQ.c           Common_Demo_Source\r
50     copy %COMMON_SOURCE%\GenQTest.c        Common_Demo_Source\r
51     copy %COMMON_SOURCE%\recmutex.c        Common_Demo_Source\r
52     copy %COMMON_SOURCE%\sp_flop.c         Common_Demo_Source\r
53     copy %COMMON_SOURCE%\countsem.c        Common_Demo_Source\r
54     copy %COMMON_SOURCE%\integer.c         Common_Demo_Source\r
55     \r
56     REM Copy the common demo file headers.\r
57     copy %COMMON_INCLUDE%\*.h              Common_Demo_Source\include\r
58     \r
59 : END\r