CC = gcc CFLAGS = -g3 -O0 all: breakwatch catch hello %.o: %.c $(CC) -o $@ -c $< $(CFLAGS) clean: rm -f breakwatch catch hello