mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:33:07 +02:00
8783cd9896
Integrate udfu image generation to ease testing with GTA02 NOR Signed-off-by: Andy Green <andy@openmoko.com>
17 lines
435 B
Makefile
17 lines
435 B
Makefile
#
|
|
# Include the make variables (CC, etc...)
|
|
#
|
|
#CROSS_COMPILE=arm-softfloat-linux-gnu-
|
|
CROSS_COMPILE=/usr/local/openmoko/arm/bin/arm-angstrom-linux-gnueabi-
|
|
|
|
AS = $(CROSS_COMPILE)as
|
|
LD = $(CROSS_COMPILE)ld
|
|
CC = $(CROSS_COMPILE)gcc
|
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
OBJDUMP = $(CROSS_COMPILE)objdump
|
|
|
|
# we need the mkudfu tool from U-Boot build
|
|
MKUDFU = ../uboot/u-boot/tools/mkudfu
|
|
|
|
export CROSS_COMPILE AD LD CC OBJCOPY OBJDUMP MKUDFU
|