mirror of
https://github.com/FunKey-Project/gpsp_libretro.git
synced 2026-03-27 14:22:43 +01:00
Add optional colour correction + interframe blending
This commit is contained in:
12
tools/Makefile
Normal file
12
tools/Makefile
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user