aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/makefile b/makefile
index c83159e..6bbb98a 100644
--- a/makefile
+++ b/makefile
@@ -2,7 +2,7 @@
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 list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist 5all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist insertsort
6 6
7list: list.c util.h 7list: list.c util.h
8 cc $(CFLAGS) $< -o $@ 8 cc $(CFLAGS) $< -o $@
@@ -52,6 +52,9 @@ allocator: allocator.c allocator.h
52arraylist: arraylist.c util.h 52arraylist: arraylist.c util.h
53 cc $(CFLAGS) $< -o $@ 53 cc $(CFLAGS) $< -o $@
54 54
55insertsort: insertsort.c util.h
56 cc $(CFLAGS) $< -o $@
57
55clean: 58clean:
56 rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist 59 rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist insertsort
57 60