1# 2# arm makefile 3# 4# Authors: Andrew Jones <drjones@redhat.com> 5# 6bits = 32 7ldarch = elf32-littlearm 8kernel_offset = 0x10000 9machine = -marm 10 11CFLAGS += $(machine) 12CFLAGS += -mcpu=$(PROCESSOR) 13 14cstart.o = $(TEST_DIR)/cstart.o 15cflatobjs += lib/arm/spinlock.o 16cflatobjs += lib/arm/processor.o 17 18# arm specific tests 19tests = 20 21include $(TEST_DIR)/Makefile.common 22 23arch_clean: arm_clean 24