10 lines
156 B
Makefile
Raw Normal View History

2024-11-22 13:45:03 +00:00
all: build run
build:
2024-12-08 19:27:05 +00:00
gcc main.c -Wextra -Wall -lsqlite3 -lreadline -o sorm
2024-12-08 18:58:50 +00:00
gcc -shared -o sorm.so -fPIC main.c -lsqlite3 -lreadline
2024-11-22 13:45:03 +00:00
run:
2024-12-08 18:58:50 +00:00
./sorm