
CC=$(CROSS_COMPILE)gcc
CXX=$(CROSS_COMPILE)gcc
LD=$(CROSS_COMPILE)ld
AS=$(CROSS_COMPILE)as
CPP=$(CROSS_COMPILE)cpp

hello: hello.o foo.o
	$(CC) $^ -o $@

clean:
	\rm -f *~ *.o

cleanall: clean
	\rm -f hello

