CC=arm-linux-gcc
STRIP=arm-linux-strip

all:Timer

Timer:Timer.o
	$(CC) -o $@ $? libposix-time.so.1 
	$(STRIP) $@


clean:
	rm -rf *~ *.o Timer