rockbox/utils/hwstub/stub/stmp/Makefile
Amaury Pouly 1085d15a3e hwstub: produce sb1 image too (for STMP3600)
Change-Id: Ib7f38fba1e524ed7438cdc395441d801c5eabcaa
2013-10-26 17:34:35 +02:00

27 lines
No EOL
613 B
Makefile

#
# common
#
CC=arm-elf-eabi-gcc
LD=arm-elf-eabi-gcc
AS=arm-elf-eabi-gcc
OC=arm-elf-eabi-objcopy
SBTOOLS=$(CURDIR)/../../../imxtools/sbtools
ELFTOSB=$(SBTOOLS)/elftosb
ELFTOSB1=$(SBTOOLS)/elftosb1
DEFINES=
INCLUDES=-I$(CURDIR)
GCCOPTS=-mcpu=arm926ej-s
BUILD_DIR=$(CURDIR)/build/
ROOT_DIR=$(CURDIR)/..
EXEC=$(BUILD_DIR)/hwstub.sb $(BUILD_DIR)/hwstub.sb1
include ../hwstub.make
$(BUILD_DIR)/hwstub.sb: $(EXEC_BIN)
$(call PRINTS,ELFTOSB $(@F))
$(SILENT)$(ELFTOSB) -z -c hwstub.db -o $@ $<
$(BUILD_DIR)/hwstub.sb1: $(EXEC_BIN)
$(call PRINTS,ELFTOSB1 $(@F))
$(SILENT)$(ELFTOSB1) -load-binary $< 0 -jump 0 -o $@