CC = gcc CFLAGS = -std=c99 -pedantic -Werror -Wall -Wextra -Wvla SRC = dlist-1.c dlist-2.c dlist-3.c dlist-4.c OBJ = $(SRC:.c=.o) .PHONY: library clean library: $(OBJ) ar csr libdlist.a $(OBJ) clean: $(OBJ) $(RM) *.a $(OBJ) $(OBJ): $(SRC)