CFLAGS=-O3 $(EXTRACFLAGS)
build: finger$(EXE)

finger$(EXE): finger.o
	$(CC) -o $@ $<

clean: 
	rm -f *.o finger$(EXE)
