linux-firmware/av7110/Makefile
Ben Hutchings 5cbed98238 dvb-ttpci: Add source code and makefile
Downstream commercial distributors need to distribute the source code
as well as the binary.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
2011-12-16 05:42:10 +00:00

12 lines
264 B
Makefile

CC = arm-linux-gnueabi-gcc
LD = arm-linux-gnueabi-ld
OBJCOPY = arm-linux-gnueabi-objcopy
bootcode.bin: Boot.S
$(CC) -mbig-endian -c Boot.S
$(LD) -Ttext 0x2c000000 -EB -o Boot Boot.o
$(OBJCOPY) -Obinary Boot bootcode.bin
clean:
rm -f Boot.o Boot bootcode.bin