JavaScript promise rejection: Loading CSS chunk index-domready failed. (error: https://sirherobrine23.com.br/assets/css/index-domready.9de057c0.css). Open browser console to see more details.
0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-06 18:11:07 +00:00
Files
libsql/bindings/c/Makefile

17 lines
375 B
Makefile
Raw Permalink Normal View History

2023-11-09 15:38:41 -05:00
OS := $(shell uname)
CFLAGS := -Iinclude
LDFLAGS := -lm
# Set LIBSQL_PATH to the default path if not provided
LIBSQL_EXPERIMENTAL_PATH ?= ../../target/release/libsql_experimental.a
2023-11-09 15:38:41 -05:00
ifeq ($(OS),Darwin)
CFLAGS += -framework Security -framework CoreServices
endif
.PHONY: all
all: example
example: example.c
$(CC) -o $@ $(CFLAGS) $< $(LIBSQL_EXPERIMENTAL_PATH) $(LDFLAGS)