CROSS_COMPILE?=$(shell cd ../buildroot/build_arm_nofpu/staging_dir/bin && pwd || exit 1)/arm-linux-
CC=$(CROSS_COMPILE)gcc

CFLAGS=-Wall -O2 -g

CFLAGS+=-I../linux-2.6.14/include

TARGETS=dumppart gpio bootchoice

all: $(TARGETS)

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



