This commit is contained in:
Xpl0itU 2023-07-19 01:27:30 +02:00
parent c9e6b12eaa
commit bc05b39ccf
10 changed files with 234 additions and 4 deletions

View file

@ -21,5 +21,5 @@ os.system("ar rcs libgtitles.a gtitles/gtitles.o")
os.system("gcc -shared -o gtitles/libgtitles.so gtitles/gtitles.o")
os.system("gcc -c -Wall -fpic -Icdecrypt cdecrypt/*.c")
os.system("ar rcs libcdecrypt.a cdecrypt/*.o")
os.system("gcc -shared -o cdecrypt/libcdecrypt.so cdecrypt/*.o")
os.system("ar rcs libcdecrypt.a *.o")
os.system("gcc -shared -o cdecrypt/libcdecrypt.so *.o")