all: build run
|
|
|
|
|
|
build_rpylib:
|
|
gcc -shared -o rpylib.so -fPIC rpylib.c -lpython3.12 `python3-config --includes` -I/usr/include/CL -ljson-c -lcurl
|
|
|
|
|
|
build:
|
|
# -lpython3.14 -I/usr/include/python3.14
|
|
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 -lm
|
|
publish rf
|
|
|
|
run:
|
|
./r
|