diff options
| author | Thomas Schmucker <ts@its1.de> | 2020-08-13 08:58:47 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2020-08-13 08:58:47 +0200 |
| commit | b46907ed64dd56415a4ca0d0dfac954003a14faf (patch) | |
| tree | 2986ca8377f1071a33c5db68d8b33415aceb06d9 /makefile | |
| parent | 26ac3307fd93588a243a289ac569be8e8b2d4c9f (diff) | |
| download | data-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.tar.gz data-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.tar.bz2 data-structures-b46907ed64dd56415a4ca0d0dfac954003a14faf.zip | |
Aktiviere eine bessere Warnstufe des Compilers, wenn zwischen signed und unsigned Werten wild hin- und hergeschalten wird.
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1,6 +1,6 @@ | |||
| 1 | .PHONY: all clean | 1 | .PHONY: all clean |
| 2 | 2 | ||
| 3 | CFLAGS=-O3 -Wall -Werror -Wno-unused-function -pedantic -std=c99 -g | 3 | CFLAGS=-O3 -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 dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque |
| 6 | 6 | ||
