aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/Marvell/dreamplug
stat options
Period:
Authors:

Commits per author per week (path 'roms/u-boot/board/Marvell/dreamplug')

AuthorW35 2025W36 2025W37 2025W38 2025Total
Total00000
#n10'>10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#
# NOTE: only compilable with x86 cross compile tools
#
include ../config-host.mak

DEFINES=

TARGETS=
ifeq ($(ARCH),i386)
TARGETS+=linux_boot.bin
endif

all: $(TARGETS)

linux_boot.bin: linux_boot.o
	ld --oformat binary -Ttext 0 -o $@ $<
	chmod a-x $@

%.o: %.S
	$(CC) $(DEFINES) -c -o $@ $<

clean:
	rm -f $(TARGETS) *.o *~