| 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
 | |
| 	publish r
 | |
| 
 | |
| build_free:
 | |
| 	gcc main.c -lcurl -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lreadline -lncurses
 | |
| 	publish rf
 | |
| 
 | |
| run:
 | |
| 	./r
 |