summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorAutechre2020-09-21 21:57:05 +0200
committerGitHub2020-09-21 21:57:05 +0200
commit0c9172a9c3edd518eb82025b7713c25346ec3666 (patch)
tree271b7068c4023fa5750911c5385c03fcf4673274 /tools/Makefile
parent4a2848af48359a6c06ceb0f38da2051088536f04 (diff)
parentaa7feb70ca6157e1aa83f1e19062c9a6a85773fb (diff)
downloadpicogpsp-0c9172a9c3edd518eb82025b7713c25346ec3666.tar.gz
picogpsp-0c9172a9c3edd518eb82025b7713c25346ec3666.tar.bz2
picogpsp-0c9172a9c3edd518eb82025b7713c25346ec3666.zip
Merge pull request #76 from jdgleaver/post-processing
Add optional colour correction + interframe blending
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile12
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)