aboutsummaryrefslogtreecommitdiffhomepage
path: root/AT91SAM7S256/SAM7S256/gcc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'AT91SAM7S256/SAM7S256/gcc/Makefile')
-rw-r--r--AT91SAM7S256/SAM7S256/gcc/Makefile109
1 files changed, 0 insertions, 109 deletions
diff --git a/AT91SAM7S256/SAM7S256/gcc/Makefile b/AT91SAM7S256/SAM7S256/gcc/Makefile
deleted file mode 100644
index f236a08..0000000
--- a/AT91SAM7S256/SAM7S256/gcc/Makefile
+++ /dev/null
@@ -1,109 +0,0 @@
-BASE = ../..
-SRCDIR = $(BASE)/Source
-DBGDIR = $(BASE)/armdebug/Debugger
-CPUINCDIR = $(BASE)/SAM7S256/Include
-
-GIT_VERSION := $(shell git rev-parse --short=7 HEAD)
-CUSTOM_FIRMWAREVERSION = $(GIT_VERSION)
-
-TARGET = nxt_firmware
-
-# Set to 'y' to enable embedded debuger.
-ARMDEBUG = n
-
-ARM_SOURCES =
-THUMB_SOURCES = c_button.c c_cmd.c c_comm.c c_display.c c_input.c c_ioctrl.c \
- c_loader.c c_lowspeed.c c_output.c c_sound.c c_ui.c \
- d_bt.c d_button.c d_display.c d_hispeed.c d_input.c \
- d_ioctrl.c d_loader.c d_lowspeed.c d_output.c d_sound.c \
- d_timer.c d_usb.c \
- m_sched.c \
- abort.c errno.c sbrk.c strtod.c sscanf.c \
- Cstartup_SAM7.c
-
-ASM_ARM_SOURCE = Cstartup.S
-ASM_THUMB_SOURCE =
-
-vpath %.c $(SRCDIR)
-vpath %.c $(CPUINCDIR)
-vpath %.c lib
-vpath %.S $(CPUINCDIR)
-
-INCLUDES =
-
-MCU = arm7tdmi
-STARTOFUSERFLASH_DEFINES = -DSTARTOFUSERFLASH_FROM_LINKER=1
-VERSION_DEFINES = -DCUSTOM_FIRMWAREVERSION=\"$(CUSTOM_FIRMWAREVERSION)\"
-DEFINES = -DPROTOTYPE_PCB_4 -DNEW_MENU -DROM_RUN -DVECTORS_IN_RAM \
- $(STARTOFUSERFLASH_DEFINES) $(VERSION_DEFINES)
-OPTIMIZE = -Os -fno-strict-aliasing \
- -ffunction-sections -fdata-sections
-WARNINGS = -Wall -W -Wundef -Wno-unused -Wno-format
-THUMB_INTERWORK = -mthumb-interwork
-CFLAGS = -g -mcpu=$(MCU) $(THUMB) $(THUMB_INTERWORK) $(WARNINGS) $(OPTIMIZE)
-ASFLAGS = -g -mcpu=$(MCU) $(THUMB) $(THUMB_INTERWORK)
-CPPFLAGS = $(INCLUDES) $(DEFINES) -MMD
-LDSCRIPT = nxt.ld
-LDFLAGS = -nostdlib -T $(LDSCRIPT) -Wl,--gc-sections
-LDLIBS = -lc -lm -lgcc
-
-ifeq ($(ARMDEBUG),y)
-ASM_ARM_SOURCE += abort_handler.S undef_handler.S debug_hexutils.S \
- debug_stub.S debug_comm.S debug_opcodes.S \
- debug_runlooptasks.S
-vpath %.S $(DBGDIR)
-DEFINES += -DARMDEBUG
-INCLUDES += -I../../armdebug/Debugger
-endif
-
-CROSS_COMPILE = arm-none-eabi-
-CC = $(CROSS_COMPILE)gcc
-OBJDUMP = $(CROSS_COMPILE)objdump
-OBJCOPY = $(CROSS_COMPILE)objcopy
-
-FWFLASH = fwflash
-
-ARM_OBJECTS = $(ARM_SOURCES:%.c=%.o) $(ASM_ARM_SOURCE:%.S=%.o)
-THUMB_OBJECTS = $(THUMB_SOURCES:%.c=%.o) $(THUMB_ARM_SOURCE:%.S=%.o)
-OBJECTS = $(ARM_OBJECTS) $(THUMB_OBJECTS)
-
-all: bin
-
-elf: $(TARGET).elf
-bin: $(TARGET).bin
-sym: $(TARGET).sym
-lst: $(TARGET).lst
-
-$(TARGET).elf: THUMB = -mthumb
-$(TARGET).elf: $(OBJECTS) $(LDSCRIPT)
- $(LINK.c) $(OBJECTS) $(LOADLIBES) $(LDLIBS) -o $@
-
-%.bin: %.elf
- $(OBJCOPY) --pad-to=0x140000 --gap-fill=0xff -O binary $< $@
-
-%.sym: %.elf
- $(OBJDUMP) -h -t $< > $@
-
-%.lst: %.elf
- $(OBJDUMP) -S $< > $@
-
-$(THUMB_OBJECTS): THUMB = -mthumb
-
--include $(OBJECTS:%.o=%.d)
-
-LAST_CUSTOM_FIRMWAREVERSION=none
--include version.mak
-ifneq ($(LAST_CUSTOM_FIRMWAREVERSION),$(CUSTOM_FIRMWAREVERSION))
-.PHONY: version.mak
-version.mak:
- echo "LAST_CUSTOM_FIRMWAREVERSION = $(CUSTOM_FIRMWAREVERSION)" > $@
-endif
-
-c_ui.o: version.mak
-
-program: $(TARGET).bin
- $(FWFLASH) $(TARGET).bin
-
-clean:
- rm -f $(TARGET).elf $(TARGET).bin $(TARGET).sym $(TARGET).lst \
- $(OBJECTS) $(OBJECTS:%.o=%.d) version.mak