0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-18 15:16:56 +00:00
Files
libsql/bindings/c/Makefile
2023-11-09 16:18:09 -05:00

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)