initial commit

This commit is contained in:
snow32a
2026-06-17 00:10:06 +03:00
parent 72b86c4153
commit 62187e7d6e
35 changed files with 6170 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
CC = i686-w64-mingw32-gcc
WINDRES = i686-w64-mingw32-windres
SRCS = *.c */*.c
RES = rc/res.o
Backcord: $(RES)
$(WINDRES) rc/res.rc -o rc/res.o
$(CC) $(SRCS) $(RES) \
-Wl,-Bstatic -lpng -lz \
-Wl,-Bdynamic -lgdi32 -lssl -lcrypto -lcrypt32 -lws2_32 \
-luser32 -lcomctl32 -lcomdlg32 -lcjson -lntdll \
-o Backcord.exe
clean:
rm -f rc/res.o Backcord.exe