SOURCES = main.c add.c
OBJS = $(subst .c,.o,$(SOURCES))

oops: $(OBJS)
	gcc -o $@ $(OBJS)

clean:
	rm -rf $(OBJS)