Actually write the damn tool

This commit is contained in:
2024-02-04 22:47:17 -06:00
parent fc0202ec46
commit 6193299dfb
7 changed files with 44 additions and 2 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
CC = gcc
build:
$(CC) renpy-filepicker-saver.c tinyfiledialogs/tinyfiledialogs.c -o saver
$(CC) renpy-filepicker-reader.c tinyfiledialogs/tinyfiledialogs.c -o reader
clean:
rm -vf saver reader