diff options
author | Marvin Borner | 2021-04-20 00:54:43 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-20 00:54:43 +0200 |
commit | aac2dae5cfcd360ad48f265910511c98decbf9e7 (patch) | |
tree | 45b7d421d2ff3d3db390f0c7fd969e4d8a58cd65 /Makefile | |
parent | 3ecfdb1064f7c4f45f53c415a77803ce2153d04d (diff) |
Beautiful blub blabs
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 -CFLAGS = -O3 $(WARNINGS) -I$(SOURCEDIR)/inc/ $(shell pkg-config --cflags --libs gtk+-3.0) +CFLAGS = -Ofast $(WARNINGS) -I$(SOURCEDIR)/inc/ $(shell pkg-config --cflags --libs gtk+-3.0) -fsanitize=undefined all: $(OBJS) @$(CC) -o ./$(BUILDDIR)/out $^ $(CFLAGS) |