CC=/skiff/local/bin/arm-linux-gcc -S

all: testcase.o
	$(CC) testcase.o -o testcase

testcase.o: testcase.c
	$(CC) -c testcase.c

clean:
	rm -f testcase.o
	rm -f testcase
