From 784f93c625260942c1961c3034ee9b57d253c696 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Sat, 31 Oct 2020 09:10:07 +0100 Subject: Import ArrayList-Implementation --- makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index db2992b..63a9aed 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g -all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque +all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist list: list.c util.h cc $(CFLAGS) $< -o $@ @@ -49,6 +49,9 @@ quicksort: quicksort.c util.h allocator: allocator.c allocator.h cc $(CFLAGS) $< -o $@ +arraylist: arraylist.c + cc $(CFLAGS) $< -o $@ + clean: - rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque + rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist -- cgit v1.3