INL-retro-progdump/firmware/Makefile

80 lines
2.5 KiB
Makefile

# Name: Makefile
# Project: custom-class example
# Author: Christian Starkjohann
# Creation Date: 2008-04-07
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
DEVICE = atmega164a
F_CPU = 16000000 # in Hz
PROJ = avr_kazzo
# Fuses and ISP programming handled in bootloader firmware build
#SOURCES=$(wildcard source/**/*.c source/*.c)
SOURCES=$(wildcard source/*.c)
CFLAGS = -Iusbdrv_Vusb -Isource -DDEBUG_LEVEL=0
USBOBJ = usbdrv_Vusb/usbdrv.o usbdrv_Vusb/usbdrvasm.o usbdrv_Vusb/oddebug.o
OBJECTS=$(patsubst %.c,%.o,$(SOURCES)) $(USBOBJ)
COMPILE = avr-gcc -Wall -Os -DF_CPU=$(F_CPU) $(CFLAGS) -mmcu=$(DEVICE)
# symbolic targets:
help:
@echo "This Makefile has no default rule. Use one of the following:"
@echo "make hex ............ to build $(PROJ).hex"
@echo "make program ........ windows flash firmware via bootloader"
@echo "make program_unix ... unix flash firmware via bootloader"
@echo "make clean .......... to delete objects and hex file"
hex: $(PROJ).hex
program: $(PROJ).hex
../bootloader/commandline/bootloadHID.exe -r $<
program_unix: $(PROJ).hex
../bootloader/commandline/bootloadHID -r $<
# rule for deleting dependent files (those which can be built by Make):
clean:
rm -f $(PROJ).hex $(PROJ).lst $(PROJ).obj $(PROJ).cof $(PROJ).list $(PROJ).map $(PROJ).eep.hex $(PROJ).elf $(OBJECTS) $(PROJ).s usbdrv_Vusb/oddebug.s usbdrv_Vusb/usbdrv.s source/shared_*
# Generic rule for compiling C files:
.c.o:
$(COMPILE) -c $< -o $@
# Generic rule for assembling Assembler source files:
.S.o:
$(COMPILE) -x assembler-with-cpp -c $< -o $@
# "-x assembler-with-cpp" should not be necessary since this is the default
# file type for the .S (with capital S) extension. However, upper case
# characters are not always preserved on Windows. To ensure WinAVR
# compatibility define the file type manually.
# Generic rule for compiling C to assembler, used for debugging only.
.c.s:
$(COMPILE) -S $< -o $@
# file targets:
$(PROJ).elf: shared $(OBJECTS)
$(COMPILE) -o $(PROJ).elf $(OBJECTS)
$(PROJ).hex: $(PROJ).elf
rm -f $(PROJ).hex $(PROJ).eep.hex
avr-objcopy -j .text -j .data -O ihex $(PROJ).elf $(PROJ).hex
# avr-size -C --mcu=${DEVICE} $(PROJ).elf
avr-size $(PROJ).elf
# debugging targets:
disasm: $(PROJ).elf
avr-objdump -d $(PROJ).elf
cpp:
$(COMPILE) -E $(PROJ).c
#copy shared .h files which are used in host and firmware
shared:
cp -r ../shared/* source/