all: group_by.c
	clang -g group_by.c linked_list.o -o group_by

.PHONY: clean
clean:
	@rm -f group_by
