X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/blobdiff_plain/0049c6b5106e540f8fe6d91016de35fe9082bff9..f82e4cd7e57df2071f281ebdc9553f5970658c6d:/Makefile diff --git a/Makefile b/Makefile index 836a7f4..f68c312 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,10 @@ v-tag = $(call v-tag_$V,$1) v-tag_0 = @printf " %-8s %s\n" "$1" "$@"; CC = gcc -CFLAGS = -O2 -g -pedantic -Wall -Werror +OPTIMIZE = -O2 +DEBUG = -g +WARN = -pedantic -Wall -Werror +CFLAGS = $(OPTIMIZE) $(DEBUG) $(WARN) LD = gcc LDFLAGS =