CC = gcc CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla SRC = simple_ls.c OBJ = $(SRC:.c=.o) all: $(OBJ) $(CC) -o simple_ls $(OBJ) $(OBJ): $(SRC) .PHONY: clean clean : $(RM) $(OBJ) simple_ls