CC=gcc OBJ=crc.o CFLAGS=-Wall -Wextra -Werror -pedantic %.o: %.c $(DEPS) $(CC) -c -o $@ $< $(CFLAGS) crc: $(OBJ) $(CC) -o $@ $^ $(CFLAGS)