mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-18 05:57:01 +00:00
14 lines
262 B
Makefile
14 lines
262 B
Makefile
OS := $(shell uname)
|
|
CFLAGS := -Iinclude
|
|
LDFLAGS := -lm
|
|
|
|
ifeq ($(OS),Darwin)
|
|
CFLAGS += -framework Security -framework CoreServices
|
|
endif
|
|
|
|
.PHONY: all
|
|
all: example
|
|
|
|
example: example.c
|
|
$(CC) -o $@ $(CFLAGS) $< ../../target/debug/libsql_experimental.a $(LDFLAGS)
|