aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
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