diff options
| author | Thomas Schmucker <ts@its1.de> | 2020-10-31 09:10:07 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2020-10-31 09:10:07 +0100 |
| commit | 784f93c625260942c1961c3034ee9b57d253c696 (patch) | |
| tree | c876e616e3bf605d052d9109aafc7da4d698f5cc /makefile | |
| parent | 034e99bf9e1621ec413a87ee5277e11210a03ee1 (diff) | |
| download | data-structures-784f93c625260942c1961c3034ee9b57d253c696.tar.gz data-structures-784f93c625260942c1961c3034ee9b57d253c696.tar.bz2 data-structures-784f93c625260942c1961c3034ee9b57d253c696.zip | |
Import ArrayList-Implementation
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g | 3 | CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g |
| 4 | 4 | ||
| 5 | all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque | 5 | all: list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist |
| 6 | 6 | ||
| 7 | list: list.c util.h | 7 | list: list.c util.h |
| 8 | cc $(CFLAGS) $< -o $@ | 8 | cc $(CFLAGS) $< -o $@ |
| @@ -49,6 +49,9 @@ quicksort: quicksort.c util.h | |||
| 49 | allocator: allocator.c allocator.h | 49 | allocator: allocator.c allocator.h |
| 50 | cc $(CFLAGS) $< -o $@ | 50 | cc $(CFLAGS) $< -o $@ |
| 51 | 51 | ||
| 52 | arraylist: arraylist.c | ||
| 53 | cc $(CFLAGS) $< -o $@ | ||
| 54 | |||
| 52 | clean: | 55 | clean: |
| 53 | rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque | 56 | rm -f list list-tail-node dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque arraylist |
| 54 | 57 | ||
