CFLAGS = -O

all: utmpshow

utmpshow: utmpshow.c
	$(CC) $(CFLAGS) -o $@ $<

clean:
	@rm -f utmpshow *.o
