aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2022-04-10 09:01:17 +0200
committerThomas Schmucker <ts@its1.de>2022-04-10 09:01:17 +0200
commit7221289477ba80bfbb9c2c37e43a9d6b1d0e6d17 (patch)
tree8516dc7673e88a9e3886911fcc6778c62d21acf6 /makefile
parent38f5e364f73967c01f9ed442fe6646e70cb1dde0 (diff)
downloaddata-structures-7221289477ba80bfbb9c2c37e43a9d6b1d0e6d17.tar.gz
data-structures-7221289477ba80bfbb9c2c37e43a9d6b1d0e6d17.tar.bz2
data-structures-7221289477ba80bfbb9c2c37e43a9d6b1d0e6d17.zip
feat: rename files
Diffstat (limited to 'makefile')
-rw-r--r--makefile19
1 files changed, 18 insertions, 1 deletions
diff --git a/makefile b/makefile
index 4b6f5b8..dc2f464 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,23 @@
1.PHONY: all clean 1.PHONY: all clean
2 2
3BINS=bin/list bin/list-tail-node bin/dlist bin/stack bin/stack2 bin/queue bin/ringbuff bin/hashtab bin/tree bin/avl bin/heap bin/quicksort bin/allocator bin/rb bin/deque bin/arraylist bin/insertsort bin/shellsort 3BINS=bin/allocator \
4 bin/arraylist \
5 bin/avl-tree \
6 bin/binary-search-tree \
7 bin/deque \
8 bin/double-linked-list \
9 bin/hash-table \
10 bin/heap \
11 bin/insertsort \
12 bin/list-tail-node \
13 bin/queue \
14 bin/quicksort \
15 bin/red-black-tree \
16 bin/ring-buffer \
17 bin/shellsort \
18 bin/single-linked-list \
19 bin/stack-array \
20 bin/stack-linked-list
4 21
5CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g 22CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g
6 23