chore: remove FREE_VERSION conditional and add --py flag for python file inclusion

This commit is contained in:
2025-03-16 21:46:09 +00:00
parent 8b25cb93d4
commit 6e3e899832
7 changed files with 107 additions and 198 deletions
+2 -2
View File
@@ -2,11 +2,11 @@ all: build run
build:
# -lpython3.14 -I/usr/include/python3.14
gcc main.c -lcurl -lssl -lcrypto -ljson-c -Ofast -o r -Werror -Wall -lreadline -lncurses
gcc main.c -Ofast -o r -Werror -Wall -lreadline -lncurses -lcurl -lssl -lcrypto -ljson-c -lm
publish r
build_free:
gcc main.c -lcurl -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lreadline -lncurses
gcc main.c -lcurl -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lreadline -lncurses -lm
publish rf
run: