]> git.sur5r.net Git - freertos/blob - Demo/ARM7_AT91SAM7X256_Eclipse/RTOSDemo/Makefile
Update to V5.4.1
[freertos] / Demo / ARM7_AT91SAM7X256_Eclipse / RTOSDemo / Makefile
1 #/*\r
2 #       FreeRTOS V5.4.1 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 #\r
4 #       This file is part of the FreeRTOS distribution.\r
5 #\r
6 #       FreeRTOS is free software; you can redistribute it and/or modify it     under \r
7 #       the terms of the GNU General Public License (version 2) as published by the \r
8 #       Free Software Foundation and modified by the FreeRTOS exception.\r
9 #       **NOTE** The exception to the GPL is included to allow you to distribute a\r
10 #       combined work that includes FreeRTOS without being obliged to provide the \r
11 #       source code for proprietary components outside of the FreeRTOS kernel.  \r
12 #       Alternative commercial license and support terms are also available upon \r
13 #       request.  See the licensing section of http://www.FreeRTOS.org for full \r
14 #       license details.\r
15 #\r
16 #       FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17 #       ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18 #       FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19 #       more details.\r
20 #\r
21 #       You should have received a copy of the GNU General Public License along\r
22 #       with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23 #       Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 #\r
25 #\r
26 #       ***************************************************************************\r
27 #       *                                                                         *\r
28 #       * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29 #       * See http://www.FreeRTOS.org/Documentation for details                   *\r
30 #       *                                                                         *\r
31 #       ***************************************************************************\r
32 #\r
33 #       1 tab == 4 spaces!\r
34 #\r
35 #       Please ensure to read the configuration and relevant port sections of the\r
36 #       online documentation.\r
37 #\r
38 #       http://www.FreeRTOS.org - Documentation, latest information, license and\r
39 #       contact details.\r
40 #\r
41 #       http://www.SafeRTOS.com - A version that is certified for use in safety\r
42 #       critical systems.\r
43 #\r
44 #       http://www.OpenRTOS.com - Commercial support, development, porting,\r
45 #       licensing and training services.\r
46 #*/\r
47 \r
48 \r
49 RTOS_SOURCE_DIR=../../../Source\r
50 DEMO_COMMON_DIR=../../Common/Minimal\r
51 DEMO_INCLUDE_DIR=../../Common/include\r
52 UIP_COMMON_DIR=../../Common/ethernet/uIP/uip-1.0/uip\r
53 \r
54 CC=arm-elf-gcc\r
55 OBJCOPY=arm-elf-objcopy\r
56 LDSCRIPT=atmel-rom.ld\r
57 \r
58 LINKER_FLAGS=-mthumb -nostartfiles -Xlinker -oRTOSDemo.elf -Xlinker -M -Xlinker -Map=rtosdemo.map\r
59 \r
60 DEBUG=-g\r
61 OPTIM=-O3\r
62 \r
63 \r
64 CFLAGS= $(DEBUG) \\r
65                 $(OPTIM) \\r
66                 -T$(LDSCRIPT) \\r
67                 -I . \\r
68                 -I $(RTOS_SOURCE_DIR)/include \\r
69                 -I $(RTOS_SOURCE_DIR)/portable/GCC/ARM7_AT91SAM7S \\r
70                 -I $(DEMO_INCLUDE_DIR) \\r
71                 -I ./webserver \\r
72                 -I $(UIP_COMMON_DIR) \\r
73                 -I ./SrcAtmel \\r
74                 -I ./USB \\r
75                 -D SAM7_GCC \\r
76                 -D THUMB_INTERWORK \\r
77                 -mcpu=arm7tdmi \\r
78                 -D PACK_STRUCT_END=__attribute\(\(packed\)\) \\r
79                 -D ALIGN_STRUCT_END=__attribute\(\(aligned\(4\)\)\) \\r
80                 -fomit-frame-pointer \\r
81                 -mthumb-interwork\r
82                                                                                 \r
83 THUMB_SOURCE= \\r
84                 main.c \\r
85                 ./ParTest/ParTest.c \\r
86                 $(DEMO_COMMON_DIR)/BlockQ.c \\r
87                 $(DEMO_COMMON_DIR)/blocktim.c \\r
88                 $(DEMO_COMMON_DIR)/flash.c \\r
89                 $(DEMO_COMMON_DIR)/integer.c \\r
90                 $(DEMO_COMMON_DIR)/GenQTest.c \\r
91                 $(DEMO_COMMON_DIR)/QPeek.c \\r
92                 $(DEMO_COMMON_DIR)/dynamic.c \\r
93                 ./webserver/uIP_Task.c \\r
94                 ./webserver/httpd.c \\r
95                 ./webserver/httpd-cgi.c \\r
96                 ./webserver/httpd-fs.c \\r
97                 ./webserver/http-strings.c \\r
98                 ./webserver/SAM7_EMAC.c \\r
99                 $(UIP_COMMON_DIR)/uip_arp.c \\r
100                 $(UIP_COMMON_DIR)/psock.c \\r
101                 $(UIP_COMMON_DIR)/timer.c \\r
102                 $(UIP_COMMON_DIR)/uip.c \\r
103                 $(RTOS_SOURCE_DIR)/list.c \\r
104                 $(RTOS_SOURCE_DIR)/queue.c \\r
105                 $(RTOS_SOURCE_DIR)/tasks.c \\r
106                 $(RTOS_SOURCE_DIR)/portable/GCC/ARM7_AT91SAM7S/port.c \\r
107                 $(RTOS_SOURCE_DIR)/portable/MemMang/heap_2.c \\r
108                 ./USB/USBSample.c\r
109 \r
110 ARM_SOURCE= \\r
111                 $(RTOS_SOURCE_DIR)/portable/GCC/ARM7_AT91SAM7S/portISR.c \\r
112                 ./webserver/emac_isr.c \\r
113                 ./SrcAtmel/Cstartup_SAM7.c \\r
114                 ./USB/USB_ISR.c\r
115 \r
116 THUMB_OBJS = $(THUMB_SOURCE:.c=.o)\r
117 ARM_OBJS = $(ARM_SOURCE:.c=.o)\r
118 \r
119 \r
120 all: RTOSDemo.bin\r
121 \r
122 RTOSDemo.bin : RTOSDemo.hex\r
123         $(OBJCOPY) RTOSDemo.elf -O binary RTOSDemo.bin\r
124          \r
125 RTOSDemo.hex : RTOSDemo.elf\r
126         $(OBJCOPY) RTOSDemo.elf -O ihex RTOSDemo.hex\r
127 \r
128 RTOSDemo.elf : $(THUMB_OBJS) $(ARM_OBJS) boot.s Makefile\r
129         $(CC) $(CFLAGS) $(ARM_OBJS) $(THUMB_OBJS) $(LIBS) boot.s $(LINKER_FLAGS) \r
130 \r
131 $(THUMB_OBJS) : %.o : %.c Makefile FreeRTOSConfig.h\r
132         $(CC) -c $(CFLAGS) -mthumb $< -o $@\r
133 \r
134 $(ARM_OBJS) : %.o : %.c Makefile FreeRTOSConfig.h\r
135         $(CC) -c $(CFLAGS) $< -o $@\r
136 \r
137 clean :\r
138         rm $(THUMB_OBJS)\r
139         rm $(ARM_OBJS)\r
140         touch Makefile\r
141         rm RTOSDemo.elf\r
142         rm RTOSDemo.hex\r
143         \r
144         \r
145         \r
146 \r
147 \r
148 \r
149 \r