10 lines
142 B
Makefile
Raw Normal View History

2024-11-22 14:45:03 +01:00
all: build run
build:
gcc main.c -lsqlite3 -lreadline -o sorm
2024-12-08 19:58:50 +01:00
gcc -shared -o sorm.so -fPIC main.c -lsqlite3 -lreadline
2024-11-22 14:45:03 +01:00
run:
2024-12-08 19:58:50 +01:00
./sorm