chore: remove python3.14 linking and plugin include from build and main

This commit is contained in:
2025-02-13 18:09:29 +00:00
parent 5b660fe905
commit c054c5a019
2 changed files with 224 additions and 27 deletions
+3 -2
View File
@@ -1,11 +1,12 @@
all: build run
build:
gcc main.c -lcurl -lssl -lcrypto -ljson-c -Ofast -o r -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
# -lpython3.14 -I/usr/include/python3.14
gcc main.c -lcurl -lssl -lcrypto -ljson-c -Ofast -o r -Werror -Wall -lreadline -lncurses
publish r
build_free:
gcc main.c -lcurl -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
gcc main.c -lcurl -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lreadline -lncurses
publish rf
run: