sorm/Makefile

9 lines
136 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
gcc -shared -o sorm.so -fPIC main.c -lsqlite3 -lreadline
run:
./sorm