From 7c62454f092ecedebd9e245dc0c9df276b288ada Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Thu, 3 Sep 2020 09:42:39 +0200 Subject: erste Version einer einfach verketteten Liste mit tail-Wächter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index 9748166..0237f02 100644 --- a/makefile +++ b/makefile @@ -2,11 +2,14 @@ CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g -all: list 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 list: list.c util.h cc $(CFLAGS) $< -o $@ +list-tail-node: list-tail-node.c util.h + cc $(CFLAGS) $< -o $@ + dlist: dlist.c util.h cc $(CFLAGS) $< -o $@ -- cgit v1.3