CC            = arm-elf-gcc
TARGET_ARCH   = -mlittle-endian -mcpu=arm7tdmi -march=armv4t -mthumb-interwork
TARGET_ARCH  += -mthumb -mno-tpcs-frame

all:  test
	arm-elf-objdump -S -D test > test.lst

clean:
	rm -f test test.o function.o
