X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/blobdiff_plain/39eec43ebb1367dffbc6911846dbcb7e673891db..48232a33dfecff3a7297300ed7087286d24033b6:/Makefile diff --git a/Makefile b/Makefile index f858660..f931c76 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 = @@ -49,6 +52,12 @@ PROGS += dvd-check-keys dvd-check-keys_SRCS = dvd-check-keys.c lib.c multiprogress.c dvd-check-keys_LIBS = -ldvdcss +PROGS += chkdvdimg +chkdvdimg_SRCS = chkdvdimg.c lib.c multiprogress.c + +PROGS += dvd-info +dvd-info_SRCS = dvd-info.c lib.c multiprogress.c + SCRIPTS += dvdrip SCRIPTS += dvdrip-upload SCRIPTS += dvdrip-monitor