PROGRAM = stop-watch

CC = gcc
CFLAGS = -g -Wall
OBJS = stop-watch.o

$(PROGRAM): $(OBJS)
	$(CC) -o $@ $(OBJS)

clean:
	rm -f $(PROGRAM) *.o *~