diff options
| author | Thomas Schmucker <ts@its1.de> | 2022-04-10 09:01:30 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2022-04-10 09:01:30 +0200 |
| commit | 07e72af6f78d7316eaed828ac0af6f95ac8e4820 (patch) | |
| tree | 8516dc7673e88a9e3886911fcc6778c62d21acf6 /makefile | |
| parent | 38f5e364f73967c01f9ed442fe6646e70cb1dde0 (diff) | |
| parent | 7221289477ba80bfbb9c2c37e43a9d6b1d0e6d17 (diff) | |
| download | data-structures-07e72af6f78d7316eaed828ac0af6f95ac8e4820.tar.gz data-structures-07e72af6f78d7316eaed828ac0af6f95ac8e4820.tar.bz2 data-structures-07e72af6f78d7316eaed828ac0af6f95ac8e4820.zip | |
Merge branch 'correct-file-names'
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 19 |
1 files changed, 18 insertions, 1 deletions
| @@ -1,6 +1,23 @@ | |||
| 1 | .PHONY: all clean | 1 | .PHONY: all clean |
| 2 | 2 | ||
| 3 | BINS=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 | 3 | BINS=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 | ||
| 5 | CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g | 22 | CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g |
| 6 | 23 | ||
