From aa7feb70ca6157e1aa83f1e19062c9a6a85773fb Mon Sep 17 00:00:00 2001 From: jdgleaver Date: Mon, 21 Sep 2020 17:50:21 +0100 Subject: Add optional colour correction + interframe blending --- tools/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools/Makefile (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..91dc1aa --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,12 @@ +CC = gcc +CFLAGS = -Wall + +TARGET = generate_cc_lut + +all: $(TARGET) + +$(TARGET): $(TARGET).c + $(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c -lm + +clean: + $(RM) $(TARGET) -- cgit v1.2.3