diff options
| author | Thomas Schmucker <ts@its1.de> | 2020-09-03 09:42:39 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2020-09-03 09:42:39 +0200 |
| commit | 7c62454f092ecedebd9e245dc0c9df276b288ada (patch) | |
| tree | 9a475d79f88bca6edd13836b0870912be15fde30 /makefile | |
| parent | 6a45dc4a35b2025d6bbebf0ae2b19b94387882f6 (diff) | |
| download | data-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.tar.gz data-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.tar.bz2 data-structures-7c62454f092ecedebd9e245dc0c9df276b288ada.zip | |
erste Version einer einfach verketteten Liste mit tail-Wächter
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 5 |
1 files changed, 4 insertions, 1 deletions
| @@ -2,11 +2,14 @@ | |||
| 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 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 |
| 6 | 6 | ||
| 7 | list: list.c util.h | 7 | list: list.c util.h |
| 8 | cc $(CFLAGS) $< -o $@ | 8 | cc $(CFLAGS) $< -o $@ |
| 9 | 9 | ||
| 10 | list-tail-node: list-tail-node.c util.h | ||
| 11 | cc $(CFLAGS) $< -o $@ | ||
| 12 | |||
| 10 | dlist: dlist.c util.h | 13 | dlist: dlist.c util.h |
| 11 | cc $(CFLAGS) $< -o $@ | 14 | cc $(CFLAGS) $< -o $@ |
| 12 | 15 | ||
