OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [CORTEX_LPC1768_GCC_RedSuite/] [CreateProjectDirectoryStructure.bat] - Blame information for rev 581

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 581 jeremybenn
REM This file should be executed from the command line prior to the first
2
REM build.  It will be necessary to refresh the Eclipse project once the
3
REM .bat file has been executed (normally just press F5 to refresh).
4
 
5
REM Copies all the required files from their location within the standard
6
REM FreeRTOS directory structure to under the Eclipse project directory.
7
REM This permits the Eclipse project to be used in 'managed' mode and without
8
REM having to setup any linked resources.
9
 
10
REM Have the files already been copied?
11
IF EXIST src\FreeRTOS Goto END
12
 
13
        REM Create the required directory structure.
14
        MD src\FreeRTOS
15
        MD src\FreeRTOS\include
16
        MD src\FreeRTOS\portable\GCC\ARM_CM3
17
        MD src\FreeRTOS\portable\MemMang
18
        MD "src\Common Demo Tasks"
19
        MD "src\Common Demo Tasks\include"
20
 
21
        REM Copy the core kernel files.
22
        copy ..\..\Source\tasks.c src\FreeRTOS
23
        copy ..\..\Source\queue.c src\FreeRTOS
24
        copy ..\..\Source\list.c src\FreeRTOS
25
 
26
        REM Copy the common header files
27
 
28
        copy ..\..\Source\include\*.* src\FreeRTOS\include
29
 
30
        REM Copy the portable layer files
31
        copy ..\..\Source\portable\GCC\ARM_CM3\*.* src\FreeRTOS\portable\GCC\ARM_CM3
32
 
33
        REM Copy the basic memory allocation files
34
        copy ..\..\Source\portable\MemMang\*.* src\FreeRTOS\portable\MemMang
35
 
36
        REM Copy the files that define the common demo tasks.
37
        copy ..\Common\minimal\BlockQ.c "src\Common Demo Tasks"
38
        copy ..\Common\minimal\blocktim.c "src\Common Demo Tasks"
39
        copy ..\Common\minimal\flash.c "src\Common Demo Tasks"
40
        copy ..\Common\minimal\GenQTest.c "src\Common Demo Tasks"
41
        copy ..\Common\minimal\integer.c "src\Common Demo Tasks"
42
        copy ..\Common\minimal\PollQ.c "src\Common Demo Tasks"
43
        copy ..\Common\minimal\QPeek.c "src\Common Demo Tasks"
44
        copy ..\Common\minimal\recmutex.c "src\Common Demo Tasks"
45
        copy ..\Common\minimal\semtest.c "src\Common Demo Tasks"
46
 
47
        REM Copy the common demo file headers.
48
        copy ..\Common\include\*.* "src\Common Demo Tasks\include"
49
 
50
: END

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.