10 lines
142 B
Makefile
Raw Normal View History

2024-11-22 13:45:03 +00:00
all: build run
build:
gcc main.c -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