AR = arm-linux-ar cru
LD = arm-linux-ld
RANLIB = arm-linux-ranlib
STRIP = arm-linux-strip
# You can use arm-linux-gcc or iwmmx_le-gcc from MV to build.
CC = arm-linux-gcc
# CC = iwmmxt_le-gcc

# Change KERNELSRC to the directory where you put the MV'CEE kernel code.
KERNELSRC =  /opt/cvs/mainstone-linux-2.6.9/linux
INCLUDES = -I$(KERNELSRC)/include -I$(KERNELSRC)/arch/arm/mach-pxa/
all:
	$(CC) $(INCLUDES) -o dvfm ./dvfm.c
tags:
	ctags *
clean:
	rm *.o dvfm tags -f
