#CC = gcc
PROG = ruptime
OBJS = ruptime.o
CFLAGS = -O3 -I.

all: $(PROG)

$(PROG): $(OBJS)

clean:
	rm -f *.o *~ core

clobber: clean
	rm -f $(PROG)
