diff options
author | jdgleaver | 2020-09-21 17:50:21 +0100 |
---|---|---|
committer | jdgleaver | 2020-09-21 18:03:58 +0100 |
commit | aa7feb70ca6157e1aa83f1e19062c9a6a85773fb (patch) | |
tree | 271b7068c4023fa5750911c5385c03fcf4673274 /tools/Makefile | |
parent | 4a2848af48359a6c06ceb0f38da2051088536f04 (diff) | |
download | picogpsp-aa7feb70ca6157e1aa83f1e19062c9a6a85773fb.tar.gz picogpsp-aa7feb70ca6157e1aa83f1e19062c9a6a85773fb.tar.bz2 picogpsp-aa7feb70ca6157e1aa83f1e19062c9a6a85773fb.zip |
Add optional colour correction + interframe blending
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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) |