objects = main.o tree.o word.o getch.o CC = gcc CFLAGS = -Wvla -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -fsanitize=address words : $(objects) $(CC) $(CFLAGS) -o words $(objects) main.o : word.h tree.h word.o : getch.h .PHONY : clean clean: rm words $(objects)