Retoor software development Projects Research SearchXNG
Register Sign In

13 lines
331 B
Makefile
Raw Normal View History

chore: scaffold project with gitignore, makefile, cgi scripts, and core c headers Add initial project structure including .gitignore for build artifacts, Makefile with gcc build and run targets, README placeholder, cgi-bin directory with gpt.py and gpt_template.html, and core C headers for chat, http, line input, markdown rendering, and messages.
2025-01-04 06:00:03 +01:00
all: build run
build:
feat: add free version build target with hardcoded api key and gpt-3.5-turbo model
2025-01-05 22:59:51 +01:00
gcc main.c -lssl -lcrypto -ljson-c -Ofast -o r -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
publish r
build_free:
gcc main.c -DFREE_VERSION -lssl -lcrypto -ljson-c -Ofast -o rf -Werror -Wall -lpython3.14 -I/usr/include/python3.14 -lreadline -lncurses
publish rf
chore: scaffold project with gitignore, makefile, cgi scripts, and core c headers Add initial project structure including .gitignore for build artifacts, Makefile with gcc build and run targets, README placeholder, cgi-bin directory with gpt.py and gpt_template.html, and core C headers for chat, http, line input, markdown rendering, and messages.
2025-01-04 06:00:03 +01:00
run:
./r
Reference in New Issue Copy Permalink
484b7c5c5b
r/Makefile
Response time: 30ms
Mail Licenses API