aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-09-03 09:42:39 +0200
committerThomas Schmucker <ts@its1.de>2020-09-03 09:42:39 +0200
commit7c62454f092ecedebd9e245dc0c9df276b288ada (patch)
tree9a475d79f88bca6edd13836b0870912be15fde30 /makefile
parent6a45dc4a35b2025d6bbebf0ae2b19b94387882f6 (diff)
downloaddata-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.tar.gz
data-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.tar.bz2
data-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.zip
erste Version einer einfach verketteten Liste mit tail-Wächter
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index 9748166..0237f02 100644
--- a/makefile
+++ b/makefile
@@ -2,11 +2,14 @@
2 2
3CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g 3CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g
4 4
5all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque 5all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque
6 6
7list: list.c util.h 7list: list.c util.h
8 cc $(CFLAGS) $< -o $@ 8 cc $(CFLAGS) $< -o $@
9 9
10list-tail-node: list-tail-node.c util.h
11 cc $(CFLAGS) $< -o $@
12
10dlist: dlist.c util.h 13dlist: dlist.c util.h
11 cc $(CFLAGS) $< -o $@ 14 cc $(CFLAGS) $< -o $@
12 15