objects = main.o getch.o word.o tree.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)