diff options
author | Marvin Borner | 2021-04-27 16:24:24 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-27 16:24:24 +0200 |
commit | 7c047df78502d53411fef09c6e39540d2b7e796a (patch) | |
tree | 00a72bb40f81e7294cb1dde776159ed219ee4967 /Makefile | |
parent | 60e7b5069d5936546356053f85008a5a02bb473a (diff) |
Fixed some overflows and enabled live parsing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ OBJS = $(patsubst $(SOURCEDIR)/%.c, $(BUILDDIR)/%.o, $(SOURCES)) CC = gcc WARNINGS = -Wall -Wextra -Wshadow -Wpointer-arith -Wwrite-strings -Wredundant-decls -Wnested-externs -Wformat=2 -Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes -Wcast-qual -Wswitch-default -Wswitch-enum -Wlogical-op -Wunreachable-code -Wundef -Wold-style-definition -Wvla -pedantic -DEBUG = -fsanitize=undefined -fsanitize=address -ggdb3 -g3 -g -s -Og +DEBUG = -fsanitize=undefined -ggdb3 -g3 -g -s -Og CFLAGS = -Ofast $(WARNINGS) -I$(SOURCEDIR)/inc/ $(shell pkg-config --cflags --libs gtk+-3.0 gtksourceview-4) $(DEBUG) all: $(OBJS) |