CC = arm-linux-gcc

all:	led
led: 	led.c
	$(CC) -o led.o led.c
	arm-linux-strip led.o

clean:
	rm -f led.o
