aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-15 09:55:30 +0200
committerThomas Schmucker <ts@its1.de>2020-08-15 09:55:30 +0200
commitc97164c73bde2226e9d9243771f5e58157db7218 (patch)
treea2c67c3e8fa5bde1b9d495bd0c555daac2224228
parent3c1c032a05ab6a2bd2b4b86508e8b9fca1b06872 (diff)
downloaddata-structures-c97164c73bde2226e9d9243771f5e58157db7218.tar.gz
data-structures-c97164c73bde2226e9d9243771f5e58157db7218.tar.bz2
data-structures-c97164c73bde2226e9d9243771f5e58157db7218.zip
makefile: Aktiviere noch mehr Fehlerprüfungen. Deaktiviere Optimierungen (damit man besser mit gdb debuggen kann).
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 12d1935..9748166 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,6 @@
1.PHONY: all clean 1.PHONY: all clean
2 2
3CFLAGS=-O3 -Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g 3CFLAGS=-Wall -Werror -Wextra -Wno-unused-function -Wsign-conversion -pedantic -std=c99 -g
4 4
5all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque 5all: list dlist stack stack2 queue ringbuff hashtab tree avl heap quicksort allocator rb deque
6 6