summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authortwinaphex2020-10-06 03:11:29 +0200
committertwinaphex2020-10-06 03:11:29 +0200
commit2e4a39374316b61a5a89078376d822d17e7f9770 (patch)
treed74067be525e9be14d82cad4b4051601acb71ac5 /tools/Makefile
parentfa80ff3c4b0b9d9fca1587ab0b696c75567819a9 (diff)
parent0c9172a9c3edd518eb82025b7713c25346ec3666 (diff)
downloadpicogpsp-2e4a39374316b61a5a89078376d822d17e7f9770.tar.gz
picogpsp-2e4a39374316b61a5a89078376d822d17e7f9770.tar.bz2
picogpsp-2e4a39374316b61a5a89078376d822d17e7f9770.zip
Merge branch 'master' of https://github.com/libretro/gpsp
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)