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