Initial commit
[kk_librfid.git] / firmware / .svn / text-base / Makefile.dfu.svn-base
blobc526fc2e2421642166cf4778a44a12d27fea348f
1 # Hey Emacs, this is a -*- makefile -*-
3 # WinARM makefile for the FreeRTOS-demo on LPC2138
4 # based in information from the FreeRTOS LPC2106 example
6 # by Martin Thomas, Kaiserslautern, Germany 
7 # <eversmith@heizung-thomas.de>
9 # based on the WinAVR makefile written by Eric B. Weddington, Jörg Wunsch, et al.
10 # Released to the Public Domain
11 # Please read the make user manual!
14 # On command line:
16 # make all = Make software.
18 # make clean = Clean out built project files.
20 # make program = Download the hex file to the device
22 # (TODO: make filename.s = Just compile filename.c into the assembler code only)
24 # To rebuild project do "make clean" then "make all".
26 # Changelog:
27 # - 17. Feb. 2005  - added thumb-interwork support (mth)
28 # - 28. Apr. 2005  - added C++ support (mth)
29 # - 29. Arp. 2005  - changed handling for lst-Filename (mth)
30 # -  1. Nov. 2005  - exception-vector placement options (mth)
31 # - 15. Nov. 2005  - added library-search-path (EXTRA_LIB...) (mth)
32 # -  2. Dec. 2005  - fixed ihex and binary file extensions (mth)
33 # - 22. Feb. 2006  - added AT91LIBNOWARN setting (mth)
34 # - 19. Apr. 2006  - option FLASH_TOOL (default lpc21isp); variable IMGEXT (mth)
35 # - 19. Mai. 2006  - USE_THUMB_MODE switch, ROM_RUN->RUN_FROM_ROM RAM_RUN->RUN_FROM_RAM
38 FLASH_TOOL = AT91FLASH
39 #FLASH_TOOL = UVISION
40 #FLASH_TOOL = OPENOCD
42 # MCU name and submodel
43 MCU      = arm7tdmi
44 #SUBMDL   = AT91SAM7S64
45 SUBMDL   = AT91SAM7S256
47 USE_THUMB_MODE = NO
48 #USE_THUMB_MODE = YES
50 ## Create ROM-Image (final)
51 RUN_MODE=RUN_FROM_ROM
52 ## Create RAM-Image (debugging) - not used in this example
53 #RUN_MODE=RUN_FROM_RAM
55 ## We want to produce a full-flash image, but including DFU 
56 IMGTYPE=-sam7dfu-dfu
58 # with / at end
59 PATH_TO_LINKSCRIPTS=link/
61 #### not used in this example:
62 ## Exception-Vector placement only supported for "ROM_RUN"
63 ## (placement settings ignored when using "RAM_RUN")
64 ## - Exception vectors in ROM:
65 #VECTOR_LOCATION=VECTORS_IN_ROM
66 ## - Exception vectors in RAM:
67 #VECTOR_LOCATION=VECTORS_IN_RAM
69 # Target file name (without extension).
70 TARGET:=dfu
72 USBSTRINGS=src/picc/usb_strings_dfu.h src/pcd/usb_strings_dfu.h
74 # List C source files here. (C dependencies are automatically generated.)
75 # use file-extension c for "c-only"-files
76 SRC = 
78 # List C source files here which must be compiled in ARM-Mode.
79 # use file-extension c for "c-only"-files
81 SRCARM  = src/start/Cstartup_SAM7.c lib/lib_AT91SAM7.c \
82           src/dfu/dfu.c src/dfu/dbgu.c src/os/flash.c
84 # List C++ source files here.
85 # use file-extension cpp for C++-files (use extension .cpp)
86 CPPSRC = 
88 # List C++ source files here which must be compiled in ARM-Mode.
89 # use file-extension cpp for C++-files (use extension .cpp)
90 #CPPSRCARM = $(TARGET).cpp
91 CPPSRCARM = 
93 # List Assembler source files here.
94 # Make them always end in a capital .S.  Files ending in a lowercase .s
95 # will not be considered source files but generated files (assembler
96 # output from the compiler), and will be deleted upon "make clean"!
97 # Even though the DOS/Win* filesystem matches both .s and .S the same,
98 # it will preserve the spelling of the filenames, and gcc itself does
99 # care about how the name is spelled on its command-line.
100 ASRC = 
102 # List Assembler source files here which must be assembled in ARM-Mode..
103 ASRCARM  = src/start/Cstartup.S
105 ifeq ($(DEBUG),1)
106 SRCARM  += lib/vsprintf.c lib/ctype.c lib/string.c
107 ASRCARM += lib/div64.S
108 endif
110 ## Output format. (can be ihex or binary)
111 ## (binary i.e. for openocd and SAM-BA, hex i.e. for lpc21isp and uVision)
112 #FORMAT = ihex
113 FORMAT = binary
115 # Optimization level, can be [0, 1, 2, 3, s]. 
116 # 0 = turn off optimization. s = optimize for size.
117 # (Note: 3 is not always the best optimization level. See avr-libc FAQ.)
118 OPT = s
119 #OPT = 0
121 # Debugging format.
122 # Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
123 # AVR (extended) COFF requires stabs, plus an avr-objcopy run.
124 #DEBUGF = stabs
125 DEBUGF = dwarf-2
127 # List any extra directories to look for include files here.
128 #     Each directory must be seperated by a space.
129 #### FreeRTOS
130 EXTRAINCDIRS =
132 # List any extra directories to look for library files here.
133 #     Each directory must be seperated by a space.
134 #EXTRA_LIBDIRS = ../arm7_efsl_0_2_4
135 EXTRA_LIBDIRS = 
137 ## Using the Atmel AT91_lib produces warning with
138 ## the default warning-levels. 
139 ## yes - disable these warnings; no - keep default settings
140 AT91LIBNOWARN = yes
141 #AT91LIBNOWARN = no
143 # Compiler flag to set the C Standard level.
144 # c89   - "ANSI" C
145 # gnu89 - c89 plus GCC extensions
146 # c99   - ISO C99 standard (not yet fully implemented)
147 # gnu99 - c99 plus GCC extensions
148 CSTANDARD = -std=gnu99
150 # Place -D or -U options for C here
151 CDEFS =  -D$(RUN_MODE) -D__MS_types__ -D__LIBRFID__ 
153 ifdef DEBUG
154 CDEFS += -DDEBUG 
155 ADEFS += -DDEBUG 
156 endif
158 ifeq ($(BOARD),OLIMEX)
159 CDEFS += -DOLIMEX
160 ADEFS += -DOLIMEX
161 endif
163 ifeq ($(BOARD),PICC)
164 CDEFS += -DPICC
165 ADEFS += -DPICC
166 CINCS  = -Isrc/picc
167 endif
169 ifeq ($(BOARD),PCD)
170 SUBMDL = AT91SAM7S128
171 CDEFS += -DPCD
172 ADEFS += -DPCD
173 CINCS  = -Isrc/pcd
174 endif
176 # Place -I options here
177 CINCS += -Iinclude -Isrc
179 # Place -D or -U options for ASM here
180 ADEFS +=  -D$(RUN_MODE)
182 ifdef VECTOR_LOCATION
183 CDEFS += -D$(VECTOR_LOCATION)
184 ADEFS += -D$(VECTOR_LOCATION)
185 endif
187 CDEFS += -D__$(SUBMDL)__
188 ADEFS += -D__$(SUBMDL)__
191 # Compiler flags.
192 #  -g*:          generate debugging information
193 #  -O*:          optimization level
194 #  -f...:        tuning, see GCC manual and avr-libc documentation
195 #  -Wall...:     warning level
196 #  -Wa,...:      tell GCC to pass this to the assembler.
197 #    -adhlns...: create assembler listing
199 # Flags for C and C++ (arm-elf-gcc/arm-elf-g++)
200 CFLAGS += -g$(DEBUGF) -DBOARD=$(BOARD) 
201 CFLAGS += $(CDEFS) $(CINCS)
202 CFLAGS += -O$(OPT)
203 CFLAGS += -Wall -Wextra -Wcast-align -Wimplicit -Wunused
204 CFLAGS += -Wpointer-arith -Wswitch
205 CFLAGS += -Wredundant-decls -Wreturn-type -Wshadow 
206 CFLAGS += -Wbad-function-cast -Wsign-compare -Waggregate-return 
207 CFLAGS += -Wa,-adhlns=$(subst $(suffix $<),.lst,$<) 
208 CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
209 #CFLAGS += -ffunction-sections -fdata-sections       
211 # flags only for C
212 CONLYFLAGS += -Wnested-externs 
213 CONLYFLAGS += $(CSTANDARD)
215 ifneq ($(AT91LIBNOWARN),yes)
216 #AT91-lib warnings with:
217 CFLAGS += -Wcast-qual
218 CONLYFLAGS += -Wmissing-prototypes 
219 CONLYFLAGS += -Wstrict-prototypes
220 CONLYFLAGS += -Wmissing-declarations
221 endif
223 # flags only for C++ (arm-elf-g++)
224 # CPPFLAGS = -fno-rtti -fno-exceptions
225 CPPFLAGS = 
227 # Assembler flags.
228 #  -Wa,...:    tell GCC to pass this to the assembler.
229 #  -ahlns:     create listing
230 #  -g$(DEBUGF): have the assembler create line number information
231 ASFLAGS = $(ADEFS) -Wa,-adhlns=$(<:.S=.lst),--g$(DEBUGF) -Iinclude/ -D__ASSEMBLY__
234 #Additional libraries.
236 # Extra libraries
237 #    Each library-name must be seperated by a space.
238 #    To add libxyz.a, libabc.a and libefsl.a: 
239 #    EXTRA_LIBS = xyz abc efsl
240 #EXTRA_LIBS = efsl
241 EXTRA_LIBS =
243 #Support for newlibc-lpc (file: libnewlibc-lpc.a)
244 #NEWLIBLPC = -lnewlib-lpc
246 MATH_LIB = #-lm
248 # CPLUSPLUS_LIB = -lstdc++
251 # Linker flags.
252 #  -Wl,...:     tell GCC to pass this to linker.
253 #    -Map:      create map file
254 #    --cref:    add cross reference to  map file
255 LDFLAGS = -nostartfiles -Wl,-Map=$(TARGET).map,--cref
256 LDFLAGS += $(NEWLIBLPC) $(MATH_LIB)
257 LDFLAGS += -lc -lgcc 
258 LDFLAGS += $(CPLUSPLUS_LIB)
259 LDFLAGS += $(patsubst %,-L%,$(EXTRA_LIBDIRS))
260 LDFLAGS += $(patsubst %,-l%,$(EXTRA_LIBS))
261 #LDFLAGS += --gc-sections
263 # Set Linker-Script Depending On Selected Memory and Controller
264 ifeq ($(RUN_MODE),RUN_FROM_RAM)
265 LDFLAGS +=-T$(PATH_TO_LINKSCRIPTS)$(SUBMDL)-RAM.ld
266 else 
267 LDFLAGS +=-T$(PATH_TO_LINKSCRIPTS)$(SUBMDL)-ROM$(IMGTYPE).ld
268 endif
271 # ---------------------------------------------------------------------------
272 # Flash-Programming support using lpc21isp by Martin Maurer 
273 # only for Philips LPC and Analog ADuC ARMs
275 # Settings and variables:
276 #LPC21ISP = lpc21isp
277 LPC21ISP = lpc21isp
278 LPC21ISP_PORT = com1
279 LPC21ISP_BAUD = 38400
280 LPC21ISP_XTAL = 12000
281 LPC21ISP_FLASHFILE = $(TARGET).hex
282 # verbose output:
283 #LPC21ISP_DEBUG = -debug
284 # enter bootloader via RS232 DTR/RTS (only if hardware supports this
285 # feature - see Philips AppNote):
286 LPC21ISP_CONTROL = -control
287 # ---------------------------------------------------------------------------
290 # Define directories, if needed.
291 ## DIRARM = c:/WinARM/
292 ## DIRARMBIN = $(DIRAVR)/bin/
293 ## DIRAVRUTILS = $(DIRAVR)/utils/bin/
295 # Define programs and commands.
296 SHELL = sh
297 CC = arm-elf-gcc
298 CPP = arm-elf-g++
299 OBJCOPY = arm-elf-objcopy
300 OBJDUMP = arm-elf-objdump
301 SIZE = arm-elf-size
302 NM = arm-elf-nm
303 REMOVE = rm -f
304 COPY = cp
306 # Define Messages
307 # English
308 MSG_ERRORS_NONE = Errors: none
309 MSG_BEGIN = "-------- begin (mode: $(RUN_MODE)) --------"
310 MSG_END = --------  end  --------
311 MSG_SIZE_BEFORE = Size before: 
312 MSG_SIZE_AFTER = Size after:
313 MSG_FLASH = Creating load file for Flash:
314 MSG_EXTENDED_LISTING = Creating Extended Listing:
315 MSG_SYMBOL_TABLE = Creating Symbol Table:
316 MSG_LINKING = Linking:
317 MSG_COMPILING = Compiling C:
318 MSG_COMPILING_ARM = "Compiling C (ARM-only):"
319 MSG_COMPILINGCPP = Compiling C++:
320 MSG_COMPILINGCPP_ARM = "Compiling C++ (ARM-only):"
321 MSG_ASSEMBLING = Assembling:
322 MSG_ASSEMBLING_ARM = "Assembling (ARM-only):"
323 MSG_CLEANING = Cleaning project:
324 MSG_FORMATERROR = Can not handle output-format
325 MSG_LPC21_RESETREMINDER = You may have to bring the target in bootloader-mode now.
327 # Define all object files.
328 COBJ      = $(SRC:.c=.o) 
329 AOBJ      = $(ASRC:.S=.o)
330 COBJARM   = $(SRCARM:.c=.o)
331 AOBJARM   = $(ASRCARM:.S=.o)
332 CPPOBJ    = $(CPPSRC:.cpp=.o) 
333 CPPOBJARM = $(CPPSRCARM:.cpp=.o)
335 # Define all listing files.
336 LST = $(ASRC:.S=.lst) $(ASRCARM:.S=.lst) $(SRC:.c=.lst) $(SRCARM:.c=.lst)
337 LST += $(CPPSRC:.cpp=.lst) $(CPPSRCARM:.cpp=.lst)
339 # Compiler flags to generate dependency files.
340 ### GENDEPFLAGS = -Wp,-M,-MP,-MT,$(*F).o,-MF,.dep/$(@F).d
341 GENDEPFLAGS = -MD -MP -MF .dep/$(@F).d
343 # Combine all necessary flags and optional flags.
344 # Add target processor to flags.
345 ALL_CFLAGS  = -mcpu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS)
346 ALL_ASFLAGS = -mcpu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
349 # Default target.
350 all: begin gccversion sizebefore build sizeafter finished end
352 ifeq ($(FORMAT),ihex)
353 build: elf hex lss sym
354 hex: $(TARGET).hex
355 IMGEXT=hex
356 else 
357 ifeq ($(FORMAT),binary)
358 build: elf bin lss sym
359 bin: $(TARGET).bin
360 IMGEXT=bin
361 else 
362 $(error "$(MSG_FORMATERROR) $(FORMAT)")
363 endif
364 endif
366 elf: $(TARGET).elf
367 lss: $(TARGET).lss 
368 sym: $(TARGET).sym
370 # Eye candy.
371 begin:
372         @echo
373         @echo $(MSG_BEGIN)
375 finished:
376         @echo $(MSG_ERRORS_NONE)
378 end:
379         @echo $(MSG_END)
380         @echo
383 # Display size of file.
384 HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
385 ELFSIZE = $(SIZE) -A $(TARGET).elf
386 sizebefore:
387         @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); echo; fi
389 sizeafter:
390         @if [ -f $(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); echo; fi
393 # Display compiler version information.
394 gccversion : 
395         @$(CC) --version
398 # Program the device.
399 # Program the device by using our relais card robot over USB
400 ifeq ($(FLASH_TOOL),AT91FLASH)
401 program: $(TARGET).$(IMGEXT)
402         ls -l $(TARGET).$(IMGEXT)
403         at91flash $(TARGET).$(IMGEXT)
404 else
405 ifeq ($(FLASH_TOOL),UVISION)
406 # Program the device with Keil's uVision (needs configured uVision-Workspace). 
407 program: $(TARGET).$(IMGEXT)
408         @echo
409         @echo "Programming with uVision"
410         C:\Keil\uv3\Uv3.exe -f uvisionflash.Uv2 -ouvisionflash.txt
411 else
412 ifeq ($(FLASH_TOOL),OPENOCD)
413 # Program the device with Dominic Rath's OPENOCD in "batch-mode", needs cfg and "reset-script".
414 program: $(TARGET).$(IMGEXT)
415         @echo
416         @echo "Programming with OPENOCD"
417         C:\WinARM\utils\openocd\openocd_svn59\openocd.exe -f oocd_sam7_flash.cfg
418 else
419 # Program the device.  - lpc21isp will not work for SAM7
420 program: $(TARGET).$(IMGEXT)
421         @echo
422         @echo $(MSG_LPC21_RESETREMINDER)
423         $(LPC21ISP) $(LPC21ISP_OPTIONS) $(LPC21ISP_DEBUG) $(LPC21ISP_FLASHFILE) $(LPC21ISP_PORT) $(LPC21ISP_BAUD) $(LPC21ISP_XTAL)
424 endif
425 endif
426 endif
429 # Create final output file (.hex) from ELF output file.
430 %.hex: %.elf
431         @echo
432         @echo $(MSG_FLASH) $@
433         $(OBJCOPY) -O $(FORMAT) $< $@
434         
435 # Create final output file (.bin) from ELF output file.
436 %.bin: %.elf
437         @echo
438         @echo $(MSG_FLASH) $@
439         $(OBJCOPY) -O $(FORMAT) $< $@
442 # Create extended listing file from ELF output file.
443 # testing: option -C
444 %.lss: %.elf
445         @echo
446         @echo $(MSG_EXTENDED_LISTING) $@
447         $(OBJDUMP) -h -S -C $< > $@
450 # Create a symbol table from ELF output file.
451 %.sym: %.elf
452         @echo
453         @echo $(MSG_SYMBOL_TABLE) $@
454         $(NM) -n $< > $@
457 # Link: create ELF output file from object files.
458 .SECONDARY : $(TARGET).elf
459 .PRECIOUS : $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) $(CPPOBJ) $(CPPOBJARM)
460 %.elf:  $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) $(CPPOBJ) $(CPPOBJARM)
461         @echo
462         @echo $(MSG_LINKING) $@
463         $(CC) $(ALL_CFLAGS) $(AOBJARM) $(AOBJ) $(COBJARM) $(COBJ) $(CPPOBJ) $(CPPOBJARM) --output $@ $(LDFLAGS)
465 # Compile: create object files from C source files. ARM/Thumb
466 $(COBJ) : %.o : %.c
467         @echo
468         @echo $(MSG_COMPILING) $<
469         $(CC) -c $(ALL_CFLAGS) $(CONLYFLAGS) $< -o $@ 
471 # Compile: create object files from C source files. ARM-only
472 $(COBJARM) : %.o : %.c include/compile.h $(USBSTRINGS)
473         @echo
474         @echo $(MSG_COMPILING_ARM) $<
475         $(CC) -c $(ALL_CFLAGS) $(CONLYFLAGS) $< -o $@ 
477 # Compile: create object files from C++ source files. ARM/Thumb
478 $(CPPOBJ) : %.o : %.cpp
479         @echo
480         @echo $(MSG_COMPILINGCPP) $<
481         $(CPP) -c $(ALL_CFLAGS) $(CPPFLAGS) $< -o $@ 
483 # Compile: create object files from C++ source files. ARM-only
484 $(CPPOBJARM) : %.o : %.cpp
485         @echo
486         @echo $(MSG_COMPILINGCPP_ARM) $<
487         $(CPP) -c $(ALL_CFLAGS) $(CPPFLAGS) $< -o $@ 
490 # Compile: create assembler files from C source files. ARM/Thumb
491 ## does not work - TODO - hints welcome
492 ##$(COBJ) : %.s : %.c
493 ##      $(CC) $(THUMB) -S $(ALL_CFLAGS) $< -o $@
496 # Assemble: create object files from assembler source files. ARM/Thumb
497 $(AOBJ) : %.o : %.S
498         @echo
499         @echo $(MSG_ASSEMBLING) $<
500         $(CC) -c $(ALL_ASFLAGS) $< -o $@
503 # Assemble: create object files from assembler source files. ARM-only
504 $(AOBJARM) : %.o : %.S
505         @echo
506         @echo $(MSG_ASSEMBLING_ARM) $<
507         $(CC) -c $(ALL_ASFLAGS) $< -o $@
510 # Target: clean project.
511 clean: begin clean_list finished end
514 clean_list :
515         @echo
516         @echo $(MSG_CLEANING)
517         $(REMOVE) $(TARGET).hex
518         $(REMOVE) $(TARGET).bin
519         $(REMOVE) $(TARGET).obj
520         $(REMOVE) $(TARGET).elf
521         $(REMOVE) $(TARGET).map
522         $(REMOVE) $(TARGET).obj
523         $(REMOVE) $(TARGET).a90
524         $(REMOVE) $(TARGET).sym
525         $(REMOVE) $(TARGET).lnk
526         $(REMOVE) $(TARGET).lss
527         $(REMOVE) $(COBJ)
528         $(REMOVE) $(CPPOBJ)
529         $(REMOVE) $(AOBJ)
530         $(REMOVE) $(COBJARM)
531         $(REMOVE) $(CPPOBJARM)
532         $(REMOVE) $(AOBJARM)
533         $(REMOVE) $(LST)
534         $(REMOVE) $(SRC:.c=.s)
535         $(REMOVE) $(SRC:.c=.d)
536         $(REMOVE) $(SRCARM:.c=.s)
537         $(REMOVE) $(SRCARM:.c=.d)
538         $(REMOVE) $(CPPSRC:.cpp=.s) 
539         $(REMOVE) $(CPPSRC:.cpp=.d)
540         $(REMOVE) $(CPPSRCARM:.cpp=.s) 
541         $(REMOVE) $(CPPSRCARM:.cpp=.d)
542         $(REMOVE) .dep/*
543         $(REMOVE) src/picc/usb_strings_dfu.h
544         $(REMOVE) src/dfu/usb_strings_dfu.h
545         $(REMOVE) scripts/usbstring
547 .PHONY: include/compile.h
548 include/compile.h: 
549         scripts/mkcompile_h > $@
551 .PHONY:
552 $(USBSTRINGS): %.h : %.txt ./scripts/usbstring
553         cat $< | ./scripts/usbstring > $@
555 scripts/usbstring: scripts/usbstring.c
556         gcc $^ -o $@
559 # Include the dependency files.
560 -include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
563 # Listing of phony targets.
564 .PHONY : all begin finish end sizebefore sizeafter gccversion \
565 build elf hex bin lss sym clean clean_list program